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
| Edit this page View SourceSnapshotSelectionCriteria(long)
Initializes a new instance of the SnapshotSelectionCriteria class.
Declaration
public SnapshotSelectionCriteria(long maxSequenceNr)
Parameters
Type | Name | Description |
---|---|---|
long | maxSequenceNr | Upper bound for a selected snapshot's sequence number. |
SnapshotSelectionCriteria(long, DateTime, long, DateTime?)
Initializes a new instance of the SnapshotSelectionCriteria class.
Declaration
[JsonConstructor]
public SnapshotSelectionCriteria(long maxSequenceNr, DateTime maxTimeStamp, long minSequenceNr = 0, DateTime? minTimestamp = null)
Parameters
Type | Name | Description |
---|---|---|
long | maxSequenceNr | Upper bound for a selected snapshot's sequence number. |
DateTime | maxTimeStamp | Upper bound for a selected snapshot's timestamp. |
long | minSequenceNr | Lower bound for a selected snapshot's sequence number |
DateTime? | minTimestamp | Lower bound for a selected snapshot's timestamp |
Properties
| Edit this page 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 |
---|---|
long |
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 |
---|---|
long |
MinTimestamp
Lower bound for a selected snapshot's timestamp
Declaration
public DateTime? MinTimestamp { get; }
Property Value
Type | Description |
---|---|
DateTime? |
None
No saved snapshot matches.
Declaration
public static SnapshotSelectionCriteria None { get; }
Property Value
Type | Description |
---|---|
SnapshotSelectionCriteria |
Methods
| Edit this page View SourceEquals(SnapshotSelectionCriteria)
Declaration
public bool Equals(SnapshotSelectionCriteria other)
Parameters
Type | Name | Description |
---|---|---|
SnapshotSelectionCriteria | other |
Returns
Type | Description |
---|---|
bool |
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceGetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int |
Overrides
| Edit this page View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |