| AtLeastOnceDeliveryActorMaxUnconfirmedMessages Property |
Maximum number of unconfirmed messages, that this actor is allowed to hold in the memory.
if this number is exceeded,
Deliver(ActorPath, FuncInt64, Object, Boolean) will not accept more
messages and it will throw
MaxUnconfirmedMessagesExceededException.
The default value can be configure with the 'akka.persistence.at-least-once-delivery.max-unconfirmed-messages'
configuration key. This method can be overridden by implementation classes to return
non-default values.
Namespace:
Akka.Persistence
Assembly:
Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public int MaxUnconfirmedMessages { get; }
member MaxUnconfirmedMessages : int with get
Property Value
Type:
Int32See Also