AtLeastOnceDelivery

class Object
trait Matchable
class Any

Type members

Classlikes

case class AtLeastOnceDeliverySnapshot(currentDeliveryId: Long, unconfirmedDeliveries: Seq[UnconfirmedDelivery]) extends Message

Snapshot of current AtLeastOnceDelivery state. Can be retrieved with AtLeastOnceDeliveryLike#getDeliverySnapshot and saved with PersistentActor#saveSnapshot. During recovery the snapshot received in SnapshotOffer should be set with AtLeastOnceDeliveryLike#setDeliverySnapshot.

Snapshot of current AtLeastOnceDelivery state. Can be retrieved with AtLeastOnceDeliveryLike#getDeliverySnapshot and saved with PersistentActor#saveSnapshot. During recovery the snapshot received in SnapshotOffer should be set with AtLeastOnceDeliveryLike#setDeliverySnapshot.

Source:
AtLeastOnceDelivery.scala
case class UnconfirmedDelivery(deliveryId: Long, destination: ActorPath, message: Any)

Information about a message that has not been confirmed. Included in UnconfirmedWarning and AtLeastOnceDeliverySnapshot.

Information about a message that has not been confirmed. Included in UnconfirmedWarning and AtLeastOnceDeliverySnapshot.

Source:
AtLeastOnceDelivery.scala