Class LoadSnapshot
Instructs a snapshot store to load the snapshot.
Assembly: Akka.Persistence.dll
Syntax
[Serializable]
public sealed class LoadSnapshot : ISnapshotRequest, ISnapshotMessage, IPersistenceMessage, INoSerializationVerificationNeeded, IEquatable<LoadSnapshot>
Constructors
|
Improve this Doc
View Source
LoadSnapshot(String, SnapshotSelectionCriteria, Int64)
Declaration
public LoadSnapshot(string persistenceId, SnapshotSelectionCriteria criteria, long toSequenceNr)
Parameters
Type |
Name |
Description |
String |
persistenceId |
Persistent actor identifier.
|
SnapshotSelectionCriteria |
criteria |
Criteria for selecting snapshot, from which the recovery should start.
|
Int64 |
toSequenceNr |
Upper, inclusive sequence number bound for recovery.
|
Properties
|
Improve this Doc
View Source
Criteria
Criteria for selecting snapshot, from which the recovery should start.
Declaration
public SnapshotSelectionCriteria Criteria { get; }
Property Value
|
Improve this Doc
View Source
PersistenceId
Persistent actor identifier.
Declaration
public string PersistenceId { get; }
Property Value
|
Improve this Doc
View Source
ToSequenceNr
Upper, inclusive sequence number bound for recovery.
Declaration
public long ToSequenceNr { get; }
Property Value
Methods
|
Improve this Doc
View Source
Equals(LoadSnapshot)
Declaration
public bool Equals(LoadSnapshot other)
Parameters
Returns
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Implements
Extension Methods