object DurableStateBehavior
- Alphabetic
- By Inheritance
- DurableStateBehavior
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- type CommandHandler[Command, State] = (State, Command) => Effect[State]
Type alias for the command handler function that defines how to act on commands.
Type alias for the command handler function that defines how to act on commands.
The type alias is not used in API signatures because it's easier to see (in IDE) what is needed when full function type is used. When defining the handler as a separate function value it can be useful to use the alias for shorter type signature.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[Command, State](persistenceId: PersistenceId, emptyState: State, commandHandler: (State, Command) => Effect[State]): DurableStateBehavior[Command, State]
Create a
Behavior
for a persistent actor with durable storage of its state.Create a
Behavior
for a persistent actor with durable storage of its state.- persistenceId
stable unique identifier for the
DurableStateBehavior
- emptyState
the intial state for the entity before any state has been stored
- commandHandler
map commands to effects e.g. persisting state, replying to commands
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lastSequenceNumber(context: ActorContext[_]): Long
The last sequence number that was persisted, can only be called from inside the handlers of a
DurableStateBehavior
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withEnforcedReplies[Command, State](persistenceId: PersistenceId, emptyState: State, commandHandler: (State, Command) => ReplyEffect[State]): DurableStateBehavior[Command, State]
Create a
Behavior
for a persistent actor that is enforcing that replies to commands are not forgotten.Create a
Behavior
for a persistent actor that is enforcing that replies to commands are not forgotten. Then there will be compilation errors if the returned effect isn't a ReplyEffect, which can be created with Effect.reply, Effect.noReply, EffectBuilder.thenReply, or EffectBuilder.thenNoReply. - object CommandHandler
The
CommandHandler
defines how to act on commands.The
CommandHandler
defines how to act on commands. ACommandHandler
is a function:(State, Command) => Effect[State]
The CommandHandler#command is useful for simple commands that don't need the state and context.