Package akka.persistence.query
Interface DurableStateChange<A>
- 
- Type Parameters:
 A- the type of the value
- All Known Implementing Classes:
 DeletedDurableState,UpdatedDurableState
public interface DurableStateChange<A>TheDurableStateStoreQuerystream elements forDurableStateStoreQuery.The implementation can be a
UpdatedDurableStateor aDeletedDurableState.Not for user extension
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Offsetoffset()The offset that can be used in nextchangesorcurrentChangesquery.java.lang.StringpersistenceId()The persistence id of the origin entity. 
 - 
 
- 
- 
Method Detail
- 
offset
Offset offset()
The offset that can be used in nextchangesorcurrentChangesquery. 
- 
persistenceId
java.lang.String persistenceId()
The persistence id of the origin entity. 
 - 
 
 -