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