| SnapshotSelectionCriteria Constructor (Int64, DateTime, Int64, NullableDateTime) |
Namespace:
Akka.Persistence
Assembly:
Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public SnapshotSelectionCriteria(
long maxSequenceNr,
DateTime maxTimeStamp,
long minSequenceNr = 0,
Nullable<DateTime> minTimestamp = null
)
new :
maxSequenceNr : int64 *
maxTimeStamp : DateTime *
?minSequenceNr : int64 *
?minTimestamp : Nullable<DateTime>
(* Defaults:
let _minSequenceNr = defaultArg minSequenceNr 0
let _minTimestamp = defaultArg minTimestamp null
*)
-> SnapshotSelectionCriteria
Parameters
- maxSequenceNr
- Type: SystemInt64
Upper bound for a selected snapshot's sequence number. - maxTimeStamp
- Type: SystemDateTime
Upper bound for a selected snapshot's timestamp. - minSequenceNr (Optional)
- Type: SystemInt64
Lower bound for a selected snapshot's sequence number - minTimestamp (Optional)
- Type: SystemNullableDateTime
Lower bound for a selected snapshot's timestamp
See Also