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

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

Deletes all snapshots matching criteria. The PersistentActor will be notified about the status of the deletion via an DeleteSnapshotsSuccess or DeleteSnapshotsFailure message.
public DeleteSnapshots ( SnapshotSelectionCriteria criteria ) : void
criteria SnapshotSelectionCriteria
Результат void
        public void DeleteSnapshots(SnapshotSelectionCriteria criteria)
        {
            SnapshotStore.Tell(new DeleteSnapshots(SnapshotterId, criteria));
        }