Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/StackExchange.Redis/Enums/StreamTrimResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public enum StreamTrimResult
Deleted = 1,

/// <summary>
/// Entry was not deleted, but there are still dangling references.
/// Entry was not deleted because it has either not been delivered to any consumer, or
/// still has references in the consumer groups' Pending Entries List (PEL).
/// </summary>
/// <remarks>This response relates to the <see cref="StreamTrimMode.Acknowledged"/> mode.</remarks>
NotDeleted = 2,
Expand Down
Loading