Package akka.persistence
Interface SnapshotStoreCapabilityFlags
-
- All Superinterfaces:
CapabilityFlags
- All Known Implementing Classes:
JavaSnapshotStoreSpec
,SnapshotStoreSpec
public interface SnapshotStoreCapabilityFlags extends CapabilityFlags
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CapabilityFlag
supportsMetadata()
Whentrue
enables tests which check if the snapshot store properly stores and loads metadata (needed for replication) along with the snapshotsCapabilityFlag
supportsSerialization()
Whentrue
enables tests which check if the snapshot store properly serialize and deserialize snapshots.
-
-
-
Method Detail
-
supportsMetadata
CapabilityFlag supportsMetadata()
Whentrue
enables tests which check if the snapshot store properly stores and loads metadata (needed for replication) along with the snapshots
-
supportsSerialization
CapabilityFlag supportsSerialization()
Whentrue
enables tests which check if the snapshot store properly serialize and deserialize snapshots.
-
-