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
pekko.persistence.state.javadsl.DurableStateUpdateStore. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description scala.concurrent.Future<Done>deleteObject(java.lang.String persistenceId)Deprecated.Use the deleteObject overload with revision instead.scala.concurrent.Future<Done>deleteObject(java.lang.String persistenceId, long revision)scala.concurrent.Future<Done>upsertObject(java.lang.String persistenceId, long revision, A value, java.lang.String tag)- 
Methods inherited from interface org.apache.pekko.persistence.state.scaladsl.DurableStateStore
getObject 
 - 
 
 -