Packages

c

akka.persistence.AtLeastOnceDelivery

AtLeastOnceDeliverySnapshot

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

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.

Annotations
@SerialVersionUID()
Source
AtLeastOnceDelivery.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AtLeastOnceDeliverySnapshot
  2. Product
  3. Equals
  4. Message
  5. Serializable
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AtLeastOnceDeliverySnapshot(currentDeliveryId: Long, unconfirmedDeliveries: Seq[UnconfirmedDelivery])

Value Members

  1. val currentDeliveryId: Long
  2. def getUnconfirmedDeliveries: List[UnconfirmedDelivery]

    Java API

  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. val unconfirmedDeliveries: Seq[UnconfirmedDelivery]