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 class 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
| Improve this Doc 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(MessageSent<T> MessageSent, IActorRef ReplyTo)
Parameters
Type | Name | Description |
---|---|---|
MessageSent<T> | MessageSent | |
IActorRef | ReplyTo |
Remarks
This command may be retried and the implementation should be idempotent.
Properties
| Improve this Doc View SourceMessageSent
Declaration
public MessageSent<T> MessageSent { get; set; }
Property Value
Type | Description |
---|---|
MessageSent<T> |
ReplyTo
Declaration
public IActorRef ReplyTo { get; set; }
Property Value
Type | Description |
---|---|
IActorRef |