You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Microsoft.Azure.Cosmos/src/Resource/FullFidelity/ChangeFeedItemChange{T}.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ namespace Microsoft.Azure.Cosmos
7
7
usingNewtonsoft.Json;
8
8
9
9
/// <summary>
10
-
/// The typed response that contains the current, previous, and metadata change feed resource when <see cref="ChangeFeedMode"/> is initialized to <see cref="ChangeFeedMode.FullFidelity"/>.
10
+
/// The typed response that contains the current, previous, and metadata change feed resource when <see cref="ChangeFeedMode"/> is initialized to <see cref="ChangeFeedMode.AllVersionsAndDeletes"/>.
Copy file name to clipboardExpand all lines: Microsoft.Azure.Cosmos/src/Resource/FullFidelity/ChangeFeedOperationType.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ namespace Microsoft.Azure.Cosmos
7
7
usingSystem.Runtime.Serialization;
8
8
9
9
/// <summary>
10
-
/// The operation type of a change feed resource with <see cref="ChangeFeedMode"/> is initialized to <see cref="ChangeFeedMode.FullFidelity"/>. Upsert operations will yield <see cref="Create"/> or <see cref="Replace"/>.
10
+
/// The operation type of a change feed resource with <see cref="ChangeFeedMode"/> is initialized to <see cref="ChangeFeedMode.AllVersionsAndDeletes"/>. Upsert operations will yield <see cref="Create"/> or <see cref="Replace"/>.
/// The example below creates a new container with a custom change feed policy for full fidelity change feed with a retention window of 5 minutes - so intermediary snapshots of changes as well as deleted documents would be
18
18
/// available for processing for 5 minutes before they vanish.
19
-
/// Processing the change feed with <see cref="ChangeFeedMode.FullFidelity"/> will only be able within this retention window - if you attempt to process a change feed after more
19
+
/// Processing the change feed with <see cref="ChangeFeedMode.AllVersionsAndDeletes"/> will only be able within this retention window - if you attempt to process a change feed after more
20
20
/// than the retention window (5 minutes in this sample) an error (Status Code 400) will be returned.
21
21
/// It would still be possible to process changes using <see cref="ChangeFeedMode.Incremental"/> mode even when configuring a full fidelity change
22
22
/// feed policy with retention window on the container and when using Incremental mode it doesn't matter whether your are out of the retention window or not.
Copy file name to clipboardExpand all lines: Microsoft.Azure.Cosmos/tests/Microsoft.Azure.Cosmos.EmulatorTests/FeedToken/ChangeFeedIteratorCoreTests.cs
+7-7
Original file line number
Diff line number
Diff line change
@@ -788,7 +788,7 @@ public async Task ChangeFeedIteratorCore_WithFullFidelityReadFromBeginning()
788
788
// FF does not work with StartFromBeginning currently, capture error
Copy file name to clipboardExpand all lines: Microsoft.Azure.Cosmos/tests/Microsoft.Azure.Cosmos.Tests/ChangeFeed/NetworkAttachedDocumentContainerTests.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,7 @@ public async Task MonadicChangeFeedAsync_ChangeFeedMode_FullFidelity()
0 commit comments