Package akka.persistence.state.scaladsl
Interface DurableStateUpdateStore<A>
-
- All Superinterfaces:
DurableStateStore<A>
- All Known Implementing Classes:
PersistenceTestKitDurableStateStore
public interface DurableStateUpdateStore<A> extends DurableStateStore<A>
API for updating durable state objects.For Java API see
DurableStateUpdateStore
.API May Change
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description scala.concurrent.Future<Done>
deleteObject(java.lang.String persistenceId)
scala.concurrent.Future<Done>
upsertObject(java.lang.String persistenceId, long revision, A value, java.lang.String tag)
-
Methods inherited from interface akka.persistence.state.scaladsl.DurableStateStore
getObject
-
-
-
-
Method Detail
-
deleteObject
scala.concurrent.Future<Done> deleteObject(java.lang.String persistenceId)
-
-