Akka.Persistence.PersistentView.LoadSnapshot C# (CSharp) Метод

LoadSnapshot() публичный Метод

Instructs the snapshot store to load the specified snapshot and send it via an SnapshotOffer to the running PersistentActor.
public LoadSnapshot ( string persistenceId, SnapshotSelectionCriteria criteria, long toSequenceNr ) : void
persistenceId string
criteria SnapshotSelectionCriteria
toSequenceNr long
Результат void
        public void LoadSnapshot(string persistenceId, SnapshotSelectionCriteria criteria, long toSequenceNr)
        {
            SnapshotStore.Tell(new LoadSnapshot(persistenceId, criteria, toSequenceNr));
        }