Enum SequenceAbortReason
- Namespace
- Silverback.Messaging.Sequences
- Assembly
- Silverback.Integration.dll
The possible reasons for a sequence to be aborted.
public enum SequenceAbortReason
Fields
ConsumerAborted = 3The consumer aborted the sequence because it is disconnecting (or rebalancing).
Disposing = 4The sequence is being disposed before it could complete.
EnumerationAborted = 1The subscriber prematurely exited the enumeration loop.
Error = 5The sequence was aborted because of an exception thrown either by the consumer pipeline or the subscriber.
IncompleteSequence = 2The sequence was incomplete.
None = 0The sequence isn't aborted.