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));
        }