Class RecoveringConsumerEventArgs
Event related to consumer recovery, during automatic recovery.
public class RecoveringConsumerEventArgs : AsyncEventArgs
- Inheritance
-
RecoveringConsumerEventArgs
- Inherited Members
Constructors
RecoveringConsumerEventArgs(string, IDictionary<string, object?>?, CancellationToken)
Constructs an event containing the consumer arguments and consumer tag of the consumer this event relates to.
public RecoveringConsumerEventArgs(string consumerTag, IDictionary<string, object?>? consumerArguments, CancellationToken cancellationToken = default)
Parameters
consumerTag
stringConsumer arguments of the consumer for this event
consumerArguments
IDictionary<string, object>Consumer tag of the consumer for this event
cancellationToken
CancellationTokenThe cancellation token.
Properties
ConsumerArguments
Access the consumer tag of the consumer this event relates to.
public IDictionary<string, object?>? ConsumerArguments { get; }
Property Value
ConsumerTag
Access the consumer arguments of the consumer this event relates to.
public string ConsumerTag { get; }