Package akka.javasdk.keyvalueentity


package akka.javasdk.keyvalueentity
Key Value Entity components for building stateful services that persist complete state on every change.

Key Value Entities are stateful components that store their entire state with each update, unlike Event Sourced Entities which store a sequence of events. This makes them suitable for use cases where you need simple state management without event history.

The main classes in this package are:

See Also:
  • Class
    Description
    Context information available to Key Value Entity command handlers during command processing.
    Key Value Entities are stateful components that persist their complete state on every change.
    An Effect describes the actions that the Akka runtime should perform after a command handler completes.
    Builder for constructing effects that describe the actions to be performed after command processing.
    Builder for chaining a reply after a successful state operation like updateState or deleteEntity.
    A read-only effect that does not modify the entity state.
    Context information available during Key Value Entity construction and initialization.