Interface IConfirmableMessage
Used to decorate messages with the ability to be confirmed without duplicates via a DeDuplicatingReceiveActor.
Namespace:Akka.Persistence.Extras
Assembly:Akka.Persistence.Extras.dll
Syntax
public interface IConfirmableMessage
Properties
ConfirmationId
The confirmation ID assigned by any type of
Declaration
long ConfirmationId { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
Remarks
Must be monotonic per-sender: this means that if your
SenderId
The globally unique (cluster-wide) ID of the sender. Usually this is the
Declaration
string SenderId { get; }
Property Value
Type | Description |
---|---|
System.String |