Click or drag to resize
Akka.NETSnapshotSelectionCriteria Constructor (Int64, DateTime, Int64, NullableDateTime)
Initializes a new instance of the SnapshotSelectionCriteria class.

Namespace:  Akka.Persistence
Assembly:  Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public SnapshotSelectionCriteria(
	long maxSequenceNr,
	DateTime maxTimeStamp,
	long minSequenceNr = 0,
	Nullable<DateTime> minTimestamp = null
)

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