final class SnapshotMetadata extends Product3[String, Long, Long] with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- SnapshotMetadata
- Serializable
- Product3
- Product
- Equals
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new SnapshotMetadata(persistenceId: String, sequenceNr: Long, timestamp: Long)
- new SnapshotMetadata(persistenceId: String, sequenceNr: Long, timestamp: Long, metadata: [Any])
- persistenceId
id of persistent actor from which the snapshot was taken.
- sequenceNr
sequence number at which the snapshot was taken.
- timestamp
time at which the snapshot was saved, defaults to 0 when unknown.
- metadata
a journal can optionally support persisting metadata separate to the domain state, used for Replicated Event Sourcing support
Value Members
- def _1: String
- Definition Classes
- SnapshotMetadata → Product3
- def _2: Long
- Definition Classes
- SnapshotMetadata → Product3
- def _3: Long
- Definition Classes
- SnapshotMetadata → Product3
- def canEqual(that: Any): Boolean
- Definition Classes
- SnapshotMetadata → Equals
- def copy(persistenceId: String = this.persistenceId, sequenceNr: Long = this.sequenceNr, timestamp: Long = this.timestamp): SnapshotMetadata
- def equals(other: Any): Boolean
- Definition Classes
- SnapshotMetadata → Equals → AnyRef → Any
- def hashCode(): Int
- Definition Classes
- SnapshotMetadata → AnyRef → Any
- val metadata: [Any]
- val persistenceId: String
- def productArity: Int
- Definition Classes
- Product3 → Product
- def productElement(n: Int): Any
- Definition Classes
- Product3 → Product
- Annotations
- @throws(classOf[java.lang.IndexOutOfBoundsException])
- def productElementName(n: Int): String
- Definition Classes
- Product
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def productIterator: Iterator[Any]
- Definition Classes
- Product
- def productPrefix: String
- Definition Classes
- SnapshotMetadata → Product
- val sequenceNr: Long
- val timestamp: Long
- def toString(): String
- Definition Classes
- SnapshotMetadata → AnyRef → Any
- def withMetadata(metadata: Any): SnapshotMetadata
Snapshot metadata.