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

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

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
Результат void
        public void DeleteSnapshot(long sequenceNr)
        {
            SnapshotStore.Tell(new DeleteSnapshot(new SnapshotMetadata(SnapshotterId, sequenceNr)));
        }