DurableStateUpdateStore

API for updating durable state objects.

For Scala API see akka.persistence.state.scaladsl.DurableStateUpdateStore.

Source:
DurableStateUpdateStore.scala
class Object
trait Matchable
class Any

Value members

Abstract methods

def deleteObject(persistenceId: String): CompletionStage[Done]
def upsertObject(persistenceId: String, revision: Long, value: A, tag: String): CompletionStage[Done]
Value parameters:
seqNr

sequence number for optimistic locking. starts at 1.

Source:
DurableStateUpdateStore.scala

Inherited methods

def getObject(persistenceId: String): CompletionStage[GetObjectResult[A]]