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

DeleteSnapshots() public method

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
return void
        public void DeleteSnapshots(SnapshotSelectionCriteria criteria)
        {
            SnapshotStore.Tell(new DeleteSnapshots(SnapshotterId, criteria));
        }