Struct MessageBrokerQueueProcessingMessageEvent
- Namespace
- LfrlAnvil.MessageBroker.Server.Events
- Assembly
- LfrlAnvil.MessageBroker.Server.dll
Represents an event emitted by MessageBrokerQueue when starting to process an enqueued message.
public readonly struct MessageBrokerQueueProcessingMessageEvent
- Inherited Members
Properties
IsFromDeadLetter
Specifies whether this message is from dead letter.
public bool IsFromDeadLetter { get; }
Property Value
IsRedelivery
Specifies whether this message is a redelivery.
public bool IsRedelivery { get; }
Property Value
IsRetry
Specifies whether this message is a retry.
public bool IsRetry { get; }
Property Value
Listener
MessageBrokerChannelListenerBinding that received the message.
public MessageBrokerChannelListenerBinding Listener { get; }
Property Value
Publisher
IMessageBrokerMessagePublisher that pushed the message.
public IMessageBrokerMessagePublisher Publisher { get; }
Property Value
Redelivery
Redelivery attempt number of this message.
public int Redelivery { get; }
Property Value
Retry
Retry attempt number of this message.
public int Retry { get; }
Property Value
Source
Event source.
public MessageBrokerQueueEventSource Source { get; }
Property Value
StoreKey
Key of the stream's message store entry associated with the message.
public int StoreKey { get; }
Property Value
Methods
ToString()
Returns a string representation of this MessageBrokerQueueProcessingMessageEvent instance.
[Pure]
public override string ToString()
Returns
- string
String representation.