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 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.CapabilityFlagsupportsSerialization()Whentrueenables tests which check if the Journal properly serialize and deserialize events. 
 - 
 
- 
- 
Method Detail
- 
supportsMetadata
CapabilityFlag supportsMetadata()
Whentrueenables tests which check if the Journal stores and returns metadata for an event 
- 
supportsRejectingNonSerializableObjects
CapabilityFlag supportsRejectingNonSerializableObjects()
Whentrueenables tests which check if the Journal properly rejects writes of objects which are notjava.lang.Serializable. 
- 
supportsSerialization
CapabilityFlag supportsSerialization()
Whentrueenables tests which check if the Journal properly serialize and deserialize events. 
 - 
 
 -