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

DeleteSnapshot() public method

Deletes the snapshot identified by sequenceNr. The PersistentActor will be notified about the status of the deletion via an DeleteSnapshotSuccess or DeleteSnapshotFailure message.
public DeleteSnapshot ( long sequenceNr ) : void
sequenceNr long
return void
        public void DeleteSnapshot(long sequenceNr)
        {
            SnapshotStore.Tell(new DeleteSnapshot(new SnapshotMetadata(SnapshotterId, sequenceNr)));
        }