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: src/StackExchange.Redis/Enums/StreamTrimMode.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
/// <summary>
4
4
/// Determines how stream trimming works.
5
5
/// </summary>
6
-
publicenumStreamDeleteMode
6
+
publicenumStreamTrimMode
7
7
{
8
8
/// <summary>
9
9
/// Trims the stream according to the specified policy (MAXLEN or MINID) regardless of whether entries are referenced by any consumer groups, but preserves existing references to these entries in all consumer groups' PEL.
/// <param name="maxLength">The maximum length of the stream.</param>
2512
2512
/// <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
2513
2513
/// <param name="limit">Specifies the maximal count of entries that will be evicted.</param>
2514
-
/// <param name="deleteMode">Determines how stream trimming should be performed.</param>
2514
+
/// <param name="trimMode">Determines how stream trimming should be performed.</param>
2515
2515
/// <param name="flags">The flags to use for this operation.</param>
2516
2516
/// <returns>The ID of the newly created message.</returns>
/// <param name="maxLength">The maximum length of the stream.</param>
2531
2531
/// <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
2532
2532
/// <param name="limit">Specifies the maximal count of entries that will be evicted.</param>
2533
-
/// <param name="deleteMode">Determines how stream trimming should be performed.</param>
2533
+
/// <param name="trimMode">Determines how stream trimming should be performed.</param>
2534
2534
/// <param name="flags">The flags to use for this operation.</param>
2535
2535
/// <returns>The ID of the newly created message.</returns>
0 commit comments