Table of Contents

Class RecoveringConsumerEventArgs

Namespace
RabbitMQ.Client.Events
Assembly
RabbitMQ.Client.dll

Event related to consumer recovery, during automatic recovery.

public class RecoveringConsumerEventArgs : EventArgs
Inheritance
RecoveringConsumerEventArgs
Inherited Members

Constructors

RecoveringConsumerEventArgs(IDictionary<string, object>, string)

Constructs an event containing the consumer arguments and consumer tag of the consumer this event relates to.

public RecoveringConsumerEventArgs(IDictionary<string, object> consumerArguments, string consumerTag)

Parameters

consumerArguments IDictionary<string, object>

Consumer arguments of the consumer for this event

consumerTag string

Consumer tag of the consumer for this event

Properties

ConsumerArguments

Access the consumer arguments of the consumer this event relates to.

public IDictionary<string, object> ConsumerArguments { get; }

Property Value

IDictionary<string, object>

ConsumerTag

Access the consumer tag of the consumer this event relates to.

public string ConsumerTag { get; }

Property Value

string