Struct MessageBrokerQueueMessageProcessedEvent
- Namespace
- LfrlAnvil.MessageBroker.Server.Events
- Assembly
- LfrlAnvil.MessageBroker.Server.dll
Represents an event emitted by MessageBrokerQueue after an enqueued message has been processed.
public readonly struct MessageBrokerQueueMessageProcessedEvent
- Inherited Members
Properties
AckExpiresAt
Moment of pending ACK expiration.
public Timestamp AckExpiresAt { get; }
Property Value
AckId
Id of the pending ACK associated with the message.
public int AckId { get; }
Property Value
IsFromDeadLetter
Specifies whether the message is from dead letter.
public bool IsFromDeadLetter { get; }
Property Value
Listener
MessageBrokerChannelPublisherBinding that received the message.
public MessageBrokerChannelListenerBinding Listener { get; }
Property Value
MessageId
Unique id of the message.
public ulong MessageId { get; }
Property Value
MessageRemoved
Specifies whether the data of the message has been removed from the stream's message store due to no longer being referenced.
public bool MessageRemoved { get; }
Property Value
Publisher
IMessageBrokerMessagePublisher that pushed the message.
public IMessageBrokerMessagePublisher Publisher { get; }
Property Value
Source
Event source.
public MessageBrokerQueueEventSource Source { get; }
Property Value
Methods
ToString()
Returns a string representation of this MessageBrokerQueueMessageProcessedEvent instance.
[Pure]
public override string ToString()
Returns
- string
String representation.