Show / Hide Table of Contents

    Enum ReceiveOrdering

    The order in which any single sender can deliver messages to this receiver.

    Namespace:Akka.Persistence.Extras
    Assembly:Akka.Persistence.Extras.dll
    Syntax
    public enum ReceiveOrdering : int
    Remarks

    The default behavior of all s is AnyOrder.

    Fields

    AnyOrder

    Messages can be received in any order by a sender - therefore correlation IDs can't be trusted to arrive in a particular order.

    Declaration
    AnyOrder = 0
    Field Value
    Type Description
    ReceiveOrdering

    StrictOrder

    Strict ordering. Messages are sent and confirmed one at a time. Correlation IDs always increase monotonically.

    Declaration
    StrictOrder = 1
    Field Value
    Type Description
    ReceiveOrdering
    Back to top Copyright © 2015-2018 Petabridge®