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>
TheDurableStateStoreQuery
stream elements forDurableStateStoreQuery
.The implementation can be a
UpdatedDurableState
or aDeletedDurableState
.Not for user extension
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Offset
offset()
The offset that can be used in nextchanges
orcurrentChanges
query.java.lang.String
persistenceId()
The persistence id of the origin entity.
-
-
-
Method Detail
-
offset
Offset offset()
The offset that can be used in nextchanges
orcurrentChanges
query.
-
persistenceId
java.lang.String persistenceId()
The persistence id of the origin entity.
-
-