Class DurableProducerQueue.StoreMessageSent<T>
Store the fact that a message is to be sent. Replies with StoreMessageSentAck when the message has been successfully stored.
Implements
Inherited Members
Namespace: Akka.Delivery
Assembly: Akka.dll
Syntax
public sealed record DurableProducerQueue.StoreMessageSent<T> : DurableProducerQueue.IDurableProducerQueueCommand, IEquatable<DurableProducerQueue.StoreMessageSent<T>>
Type Parameters
Name | Description |
---|---|
T |
Remarks
This command may be retried and the implementation should be idempotent.
Constructors
| Edit this page View SourceStoreMessageSent(MessageSent<T>, IActorRef)
Store the fact that a message is to be sent. Replies with StoreMessageSentAck when the message has been successfully stored.
Declaration
public StoreMessageSent(DurableProducerQueue.MessageSent<T> MessageSent, IActorRef ReplyTo)
Parameters
Type | Name | Description |
---|---|---|
DurableProducerQueue.MessageSent<T> | MessageSent | |
IActorRef | ReplyTo |
Remarks
This command may be retried and the implementation should be idempotent.
Properties
| Edit this page View SourceMessageSent
Declaration
public DurableProducerQueue.MessageSent<T> MessageSent { get; init; }
Property Value
Type | Description |
---|---|
DurableProducerQueue.MessageSent<T> |
ReplyTo
Declaration
public IActorRef ReplyTo { get; init; }
Property Value
Type | Description |
---|---|
IActorRef |