Interface ISnapshotStoreInterceptor
Interface to object which will intercept all action in TestSnapshotStore.
Namespace: Akka.Persistence.TestKit
Assembly: Akka.Persistence.TestKit.dll
Syntax
public interface ISnapshotStoreInterceptor
Methods
| Edit this page View SourceInterceptAsync(string, SnapshotSelectionCriteria)
Method will be called for each load, save or delete attempt in TestSnapshotStore.
Declaration
Task InterceptAsync(string persistenceId, SnapshotSelectionCriteria criteria)
Parameters
| Type | Name | Description |
|---|---|---|
| string | persistenceId | |
| SnapshotSelectionCriteria | criteria |
Returns
| Type | Description |
|---|---|
| Task |
Edit this page