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 SummaryAll 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- 
offsetOffset offset() The offset that can be used in nextchangesorcurrentChangesquery.
 - 
persistenceIdjava.lang.String persistenceId() The persistence id of the origin entity.
 
- 
 
-