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