Akka.Persistence.PersistentView.SaveSnapshot C# (CSharp) Method

SaveSnapshot() public method

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
return void
        public void SaveSnapshot(object snapshot)
        {
            SnapshotStore.Tell(new SaveSnapshot(new SnapshotMetadata(SnapshotterId, SnapshotSequenceNr), snapshot));
        }