final case class SnapshotSelectionCriteria(maxSequenceNr: Long = Long.MaxValue, maxTimestamp: Long = Long.MaxValue, minSequenceNr: Long = 0L, minTimestamp: Long = 0L) extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- SnapshotSelectionCriteria
- Serializable
- Product
- Equals
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new SnapshotSelectionCriteria(maxSequenceNr: Long = Long.MaxValue, maxTimestamp: Long = Long.MaxValue, minSequenceNr: Long = 0L, minTimestamp: Long = 0L)
- maxSequenceNr
upper bound for a selected snapshot's sequence number. Default is no upper bound, i.e.
Long.MaxValue
- maxTimestamp
upper bound for a selected snapshot's timestamp. Default is no upper bound, i.e.
Long.MaxValue
- minSequenceNr
lower bound for a selected snapshot's sequence number. Default is no lower bound, i.e.
0L
- minTimestamp
lower bound for a selected snapshot's timestamp. Default is no lower bound, i.e.
0L
Selection criteria for loading and deleting snapshots.
upper bound for a selected snapshot's sequence number. Default is no upper bound, i.e.
Long.MaxValue
upper bound for a selected snapshot's timestamp. Default is no upper bound, i.e.
Long.MaxValue
lower bound for a selected snapshot's sequence number. Default is no lower bound, i.e.
0L
lower bound for a selected snapshot's timestamp. Default is no lower bound, i.e.
0L
Recovery