trait DurableStateUpdateStore[A] extends DurableStateStore[A]
Ordering
- Alphabetic
- By Inheritance
Inherited
- DurableStateUpdateStore
- DurableStateStore
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def deleteObject(persistenceId: String, revision: Long): [Done]
- abstract def getObject(persistenceId: String): [GetObjectResult[A]]
- Definition Classes
- DurableStateStore
- abstract def upsertObject(persistenceId: String, revision: Long, value: A, tag: String): [Done]
- revision
sequence number for optimistic locking. starts at 1.
- abstract def deleteObject(persistenceId: String): [Done]
- Annotations
- @deprecated
- Deprecated
(Since version 2.6.20) Use the deleteObject overload with revision instead.
API for updating durable state objects.
For Java API see akka.persistence.state.javadsl.DurableStateUpdateStore.
See also DurableStateUpdateWithChangeEventStore