C# Class Akka.Persistence.Snapshot.NoSnapshotStore

Used as a default snapshot-store in case no other store was configured. If a PersistentActor calls the PersistentActor.SaveSnapshot(object) method, and at the same time does not configure a specific snapshot-store to be used *and* no default snapshot-store is available, then the NoSnapshotStore will be used to signal a snapshot store failure.
Inheritance: Akka.Persistence.Snapshot.SnapshotStore
Exibir arquivo Open project: rogeralsing/akka.net

Protected Methods

Method Description
DeleteAsync ( SnapshotMetadata metadata ) : System.Threading.Tasks.Task
DeleteAsync ( string persistenceId, SnapshotSelectionCriteria criteria ) : System.Threading.Tasks.Task
LoadAsync ( string persistenceId, SnapshotSelectionCriteria criteria ) : Task
SaveAsync ( SnapshotMetadata metadata, object snapshot ) : System.Threading.Tasks.Task

Private Methods

Method Description
Flop ( ) : System.Threading.Tasks.Task

Method Details

DeleteAsync() protected method

protected DeleteAsync ( SnapshotMetadata metadata ) : System.Threading.Tasks.Task
metadata SnapshotMetadata
return System.Threading.Tasks.Task

DeleteAsync() protected method

protected DeleteAsync ( string persistenceId, SnapshotSelectionCriteria criteria ) : System.Threading.Tasks.Task
persistenceId string
criteria SnapshotSelectionCriteria
return System.Threading.Tasks.Task

LoadAsync() protected method

protected LoadAsync ( string persistenceId, SnapshotSelectionCriteria criteria ) : Task
persistenceId string
criteria SnapshotSelectionCriteria
return Task

SaveAsync() protected method

protected SaveAsync ( SnapshotMetadata metadata, object snapshot ) : System.Threading.Tasks.Task
metadata SnapshotMetadata
snapshot object
return System.Threading.Tasks.Task