Package akka.persistence
Interface JournalCapabilityFlags
-
- All Superinterfaces:
CapabilityFlags
- All Known Implementing Classes:
JavaJournalPerfSpec
,JavaJournalSpec
,JournalPerfSpec
,JournalSpec
public interface JournalCapabilityFlags extends CapabilityFlags
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CapabilityFlag
supportsMetadata()
Whentrue
enables tests which check if the Journal stores and returns metadata for an eventCapabilityFlag
supportsRejectingNonSerializableObjects()
Whentrue
enables tests which check if the Journal properly rejects writes of objects which are notjava.lang.Serializable
.CapabilityFlag
supportsReplayOnlyLast()
Whentrue
enables tests which check if the Journal can replay only the last event.CapabilityFlag
supportsSerialization()
Whentrue
enables tests which check if the Journal properly serialize and deserialize events.
-
-
-
Method Detail
-
supportsMetadata
CapabilityFlag supportsMetadata()
Whentrue
enables tests which check if the Journal stores and returns metadata for an event
-
supportsRejectingNonSerializableObjects
CapabilityFlag supportsRejectingNonSerializableObjects()
Whentrue
enables tests which check if the Journal properly rejects writes of objects which are notjava.lang.Serializable
.
-
supportsReplayOnlyLast
CapabilityFlag supportsReplayOnlyLast()
Whentrue
enables tests which check if the Journal can replay only the last event.
-
supportsSerialization
CapabilityFlag supportsSerialization()
Whentrue
enables tests which check if the Journal properly serialize and deserialize events.
-
-