Akka.Persistence.PersistentView.SaveSnapshot C# (CSharp) Méthode

SaveSnapshot() public méthode

Saves snapshot of current ISnapshotter state. The PersistentActor will be notified about the success or failure of this via an SaveSnapshotSuccess or SaveSnapshotFailure message.
public SaveSnapshot ( object snapshot ) : void
snapshot object
Résultat void
        public void SaveSnapshot(object snapshot)
        {
            SnapshotStore.Tell(new SaveSnapshot(new SnapshotMetadata(SnapshotterId, SnapshotSequenceNr), snapshot));
        }