final case class ReadSnapshot(criteria: SnapshotSelectionCriteria, snapshot: Option[Any]) extends SnapshotOperation with Product with Serializable

Storage read operation for recovery of the persistent actor.

criteria

criteria with which snapshot is searched

snapshot

snapshot found by criteria

Source
SnapshotStorage.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReadSnapshot
  2. Serializable
  3. Product
  4. Equals
  5. SnapshotOperation
  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 ReadSnapshot(criteria: SnapshotSelectionCriteria, snapshot: Option[Any])

    criteria

    criteria with which snapshot is searched

    snapshot

    snapshot found by criteria

Value Members

  1. val criteria: SnapshotSelectionCriteria
  2. def getSnapshot(): Optional[Any]
  3. def getSnapshotSelectionCriteria(): SnapshotSelectionCriteria
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. val snapshot: Option[Any]