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 class StoreMessageConfirmed : DurableProducerQueue.IDurableProducerQueueCommand, IEquatable<DurableProducerQueue.StoreMessageConfirmed>
Remarks
This command may be retried and the implementation should be idempotent.
Constructors
| Improve this Doc View SourceStoreMessageConfirmed(Int64, String, Int64)
Store the fact that a message has been delivered and processed.
Declaration
public StoreMessageConfirmed(long SeqNr, string ConfirmationQualifier, long Timestamp)
Parameters
Type | Name | Description |
---|---|---|
Int64 | SeqNr | |
String | ConfirmationQualifier | |
Int64 | Timestamp |
Remarks
This command may be retried and the implementation should be idempotent.
Properties
| Improve this Doc View SourceConfirmationQualifier
Declaration
public string ConfirmationQualifier { get; set; }
Property Value
Type | Description |
---|---|
String |
SeqNr
Declaration
public long SeqNr { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
Timestamp
Declaration
public long Timestamp { get; set; }
Property Value
Type | Description |
---|---|
Int64 |