Class DurableProducerQueue.StoreMessageConfirmed
Store the fact that a message has been delivered and processed.
Implements
Inherited Members
Namespace: Akka.Delivery
Assembly: Akka.dll
Syntax
public sealed record DurableProducerQueue.StoreMessageConfirmed : DurableProducerQueue.IDurableProducerQueueCommand, IEquatable<DurableProducerQueue.StoreMessageConfirmed>
Remarks
This command may be retried and the implementation should be idempotent.
Constructors
| Edit this page View SourceStoreMessageConfirmed(long, string, long)
Store the fact that a message has been delivered and processed.
Declaration
public StoreMessageConfirmed(long SeqNr, string ConfirmationQualifier, long Timestamp)
Parameters
Type | Name | Description |
---|---|---|
long | SeqNr | |
string | ConfirmationQualifier | |
long | Timestamp |
Remarks
This command may be retried and the implementation should be idempotent.
Properties
| Edit this page View SourceConfirmationQualifier
Declaration
public string ConfirmationQualifier { get; init; }
Property Value
Type | Description |
---|---|
string |
SeqNr
Declaration
public long SeqNr { get; init; }
Property Value
Type | Description |
---|---|
long |
Timestamp
Declaration
public long Timestamp { get; init; }
Property Value
Type | Description |
---|---|
long |