Class SnapshotSelectionCriteria
Selection criteria for loading and deleting a snapshots.
Implements
Inherited Members
Namespace: Akka.Persistence
Assembly: Akka.Persistence.dll
Syntax
[Serializable]
public sealed class SnapshotSelectionCriteria : IEquatable<SnapshotSelectionCriteria>
Constructors
| Improve this Doc View SourceSnapshotSelectionCriteria(Int64)
Initializes a new instance of the SnapshotSelectionCriteria class.
Declaration
public SnapshotSelectionCriteria(long maxSequenceNr)
Parameters
Type | Name | Description |
---|---|---|
Int64 | maxSequenceNr | Upper bound for a selected snapshot's sequence number. |
SnapshotSelectionCriteria(Int64, DateTime, Int64, Nullable<DateTime>)
Initializes a new instance of the SnapshotSelectionCriteria class.
Declaration
[JsonConstructor]
public SnapshotSelectionCriteria(long maxSequenceNr, DateTime maxTimeStamp, long minSequenceNr = 0L, DateTime? minTimestamp = null)
Parameters
Type | Name | Description |
---|---|---|
Int64 | maxSequenceNr | Upper bound for a selected snapshot's sequence number. |
DateTime | maxTimeStamp | Upper bound for a selected snapshot's timestamp. |
Int64 | minSequenceNr | Lower bound for a selected snapshot's sequence number |
Nullable<DateTime> | minTimestamp | Lower bound for a selected snapshot's timestamp |
Properties
| Improve this Doc View SourceLatest
The latest saved snapshot.
Declaration
public static SnapshotSelectionCriteria Latest { get; }
Property Value
Type | Description |
---|---|
SnapshotSelectionCriteria |
MaxSequenceNr
Upper bound for a selected snapshot's sequence number.
Declaration
public long MaxSequenceNr { get; }
Property Value
Type | Description |
---|---|
Int64 |
MaxTimeStamp
Upper bound for a selected snapshot's timestamp.
Declaration
public DateTime MaxTimeStamp { get; }
Property Value
Type | Description |
---|---|
DateTime |
MinSequenceNr
Lower bound for a selected snapshot's sequence number
Declaration
public long MinSequenceNr { get; }
Property Value
Type | Description |
---|---|
Int64 |
MinTimestamp
Lower bound for a selected snapshot's timestamp
Declaration
public DateTime? MinTimestamp { get; }
Property Value
Type | Description |
---|---|
Nullable<DateTime> |
None
No saved snapshot matches.
Declaration
public static SnapshotSelectionCriteria None { get; }
Property Value
Type | Description |
---|---|
SnapshotSelectionCriteria |
Methods
| Improve this Doc View SourceEquals(SnapshotSelectionCriteria)
Declaration
public bool Equals(SnapshotSelectionCriteria other)
Parameters
Type | Name | Description |
---|---|---|
SnapshotSelectionCriteria | other |
Returns
Type | Description |
---|---|
Boolean |
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj |
Returns
Type | Description |
---|---|
Boolean |
Overrides
| Improve this Doc View SourceGetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 |
Overrides
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String |