case class AtLeastOnceDeliverySnapshot(currentDeliveryId: Long, unconfirmedDeliveries: Seq[UnconfirmedDelivery]) extends Message with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- AtLeastOnceDeliverySnapshot
- Product
- Equals
- Message
- Serializable
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AtLeastOnceDeliverySnapshot(currentDeliveryId: Long, unconfirmedDeliveries: [UnconfirmedDelivery])
Value Members
- val currentDeliveryId: Long
- def getUnconfirmedDeliveries: [UnconfirmedDelivery]
Java API
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val unconfirmedDeliveries: [UnconfirmedDelivery]
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.