Show / Hide Table of Contents

    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 doesn't persist it's delivery state, you're going to have a "bad time" when using the DeDuplicatingReceiveActor.

    SenderId

    The globally unique (cluster-wide) ID of the sender. Usually this is the

    Declaration
    string SenderId { get; }
    Property Value
    Type Description
    System.String
    Back to top Copyright © 2015-2018 Petabridge®