Click or drag to resize
Akka.NETISnapshotQueryExecutor Interface
TBD

Namespace:  Akka.Persistence.Sql.Common.Snapshot
Assembly:  Akka.Persistence.Sql.Common (in Akka.Persistence.Sql.Common.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface ISnapshotQueryExecutor

The ISnapshotQueryExecutor type exposes the following members.

Properties
  NameDescription
Public propertyConfiguration
Configuration settings for the current query executor.
Top
Methods
  NameDescription
Public methodCreateTableAsync
TBD
Public methodDeleteAsync
Deletes a single snapshot identified by it's persistent actor's persistenceId, sequenceNr and timestamp.
Public methodDeleteBatchAsync
Deletes all snapshot matching persistent actor's persistenceId as well as upper (inclusive) bounds of the both maxSequenceNr and maxTimestamp.
Public methodInsertAsync
Inserts a single snapshot represented by provided SnapshotEntry instance.
Public methodSelectSnapshotAsync
Selects a single snapshot identified by persistent actor's persistenceId, matching upper (inclusive) bounds of both maxSequenceNr and maxTimestamp. In case, when more than one snapshot matches specified criteria, one with the highest sequence number will be selected.
Top
See Also