Class/Object

com.lightbend.lagom.javadsl.persistence

PersistentEntity

Related Docs: object PersistentEntity | package persistence

Permalink

abstract class PersistentEntity[Command, Event, State] extends AnyRef

A PersistentEntity has a stable entity identifier, with which it can be accessed from anywhere in the cluster. It is run by an actor and the state is persistent using event sourcing.

initialBehavior is an abstract method that your concrete subclass must implement. It returns the Behavior of the entity. The behavior consists of current state and functions to process incoming commands and persisted events.

The PersistentEntity receives commands of type Command that can be validated before persisting state changes as events of type Event. The functions that process incoming commands are registered in the Behavior using setCommandHandler of the BehaviorBuilder.

A command may also be read-only and only perform some side-effect, such as replying to the request. Such command handlers are registered using setReadOnlyCommandHandler of the BehaviorBuilder. Replies are sent with the reply method of the context that is passed to the command handler function.

A command handler returns a Persist directive that defines what event or events, if any, to persist. Use the thenPersist, thenPersistAll or done methods of the context that is passed to the command handler function to create the Persist directive.

When an event has been persisted successfully the state of type State is updated by applying the event to the current state. The functions for updating the state are registered with the setEventHandler method of the BehaviorBuilder. The event handler returns the new state. The state must be immutable, so you return a new instance of the state. Current state can be accessed from the event handler with the state method of the PersistentEntity. The same event handlers are also used when the entity is started up to recover its state from the stored events.

After persisting an event, external side effects can be performed in the afterPersist function that can be defined when creating the Persist directive. A typical side effect is to reply to the request to confirm that it was performed successfully. Replies are sent with the reply method of the context that is passed to the command handler function.

The event handlers are typically only updating the state, but they may also change the behavior of the entity in the sense that new functions for processing commands and events may be defined. This is useful when implementing finite state machine (FSM) like entities. Event handlers that change the behavior are registered with the setEventHandlerChangingBehavior of the BehaviorBuilder. Such an event handler returns the new Behavior instead of just returning the new state. You can access current behavior with the behavior method of the PersistentEntity and using the builder method of the Behavior.

When the entity is started the state is recovered by replaying stored events. To reduce this recovery time the entity may start the recovery from a snapshot of the state and then only replaying the events that were stored after the snapshot. Such snapshots are automatically saved after a configured number of persisted events. The snapshot if any is passed as a parameter to the initialBehavior method and you should use that state as the state of the returned Behavior. One thing to keep in mind is that if you are using event handlers that change the behavior (setEventHandlerChangingBehavior) you must also restore corresponding Behavior from the snapshot state that is passed as a parameter to the initialBehavior method.

Type parameter Command: the super type of all commands, must implement PersistentEntity.ReplyType to define the reply type of each command type Type parameter Event: the super type of all events Type parameter State: the type of the state

Source
PersistentEntity.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PersistentEntity
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PersistentEntity()

    Permalink

Type Members

  1. case class Behavior(state: State, eventHandlers: Map[Class[_ <: Event], Function[_ <: Event, Behavior]], commandHandlers: Map[Class[_ <: Command], BiFunction[_ <: Command, CommandContext[Any], Persist[_ <: Event]]]) extends Product with Serializable

    Permalink

    Behavior consists of current state and functions to process incoming commands and persisted events.

    Behavior consists of current state and functions to process incoming commands and persisted events. Behavior is an immutable class. Use the mutable BehaviorBuilder for defining command and event handlers.

  2. final class BehaviorBuilder extends AnyRef

    Permalink

    Mutable builder that is used for defining the event and command handlers.

    Mutable builder that is used for defining the event and command handlers. Use [#build] to create the immutable Behavior.

    Attributes
    protected
  3. abstract class CommandContext[R] extends ReadOnlyCommandContext[R]

    Permalink

    The context that is passed to command handler function.

  4. trait Persist[B <: Event] extends AnyRef

    Permalink

    A command handler returns a Persist directive that defines what event or events, if any, to persist.

    A command handler returns a Persist directive that defines what event or events, if any, to persist. Use the thenPersist, thenPersistAll or done methods of the context that is passed to the command handler function to create the Persist directive.

  5. abstract class ReadOnlyCommandContext[R] extends AnyRef

    Permalink

    The context that is passed to read-only command handlers.

Abstract Value Members

  1. abstract def initialBehavior(snapshotState: Optional[State]): Behavior

    Permalink

    Abstract method that must be implemented by concrete subclass to define the behavior of the entity.

    Abstract method that must be implemented by concrete subclass to define the behavior of the entity. Use #newBehaviorBuilder to create a mutable builder for defining the behavior.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from PersistentEntity[Command, Event, State] to any2stringadd[PersistentEntity[Command, Event, State]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (PersistentEntity[Command, Event, State], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from PersistentEntity[Command, Event, State] to ArrowAssoc[PersistentEntity[Command, Event, State]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. final def behavior: Behavior

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def ensuring(cond: (PersistentEntity[Command, Event, State]) ⇒ Boolean, msg: ⇒ Any): PersistentEntity[Command, Event, State]

    Permalink
    Implicit information
    This member is added by an implicit conversion from PersistentEntity[Command, Event, State] to Ensuring[PersistentEntity[Command, Event, State]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (PersistentEntity[Command, Event, State]) ⇒ Boolean): PersistentEntity[Command, Event, State]

    Permalink
    Implicit information
    This member is added by an implicit conversion from PersistentEntity[Command, Event, State] to Ensuring[PersistentEntity[Command, Event, State]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): PersistentEntity[Command, Event, State]

    Permalink
    Implicit information
    This member is added by an implicit conversion from PersistentEntity[Command, Event, State] to Ensuring[PersistentEntity[Command, Event, State]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): PersistentEntity[Command, Event, State]

    Permalink
    Implicit information
    This member is added by an implicit conversion from PersistentEntity[Command, Event, State] to Ensuring[PersistentEntity[Command, Event, State]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def entityId: String

    Permalink
    Attributes
    protected
  14. def entityTypeName: String

    Permalink

    The name of this entity type.

    The name of this entity type. It should be unique among the entity types of the service. By default it is using the short class name of the concrete PersistentEntity class. Subclass may override to define other type names. It is needed to override and retain the original name when the class name is changed because this name is part of the key of the store data (it is part of the persistenceId of the underlying PersistentActor).

  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from PersistentEntity[Command, Event, State] to StringFormat[PersistentEntity[Command, Event, State]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def newBehavior(state: State): Behavior

    Permalink

    Create a new empty Behavior with a given state.

  24. final def newBehaviorBuilder(state: State): BehaviorBuilder

    Permalink

    Create a new empty BehaviorBuilder with a given state.

  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def recoveryCompleted(): Behavior

    Permalink

    This method is called to notify the entity that the recovery process is finished.

  28. final def state: State

    Permalink

    Current state of the entity.

    Current state of the entity. Typically accessed from event and command handlers.

    Attributes
    protected
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def [B](y: B): (PersistentEntity[Command, Event, State], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from PersistentEntity[Command, Event, State] to ArrowAssoc[PersistentEntity[Command, Event, State]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from PersistentEntity[Command, Event, State] to any2stringadd[PersistentEntity[Command, Event, State]]

Inherited by implicit conversion StringFormat from PersistentEntity[Command, Event, State] to StringFormat[PersistentEntity[Command, Event, State]]

Inherited by implicit conversion Ensuring from PersistentEntity[Command, Event, State] to Ensuring[PersistentEntity[Command, Event, State]]

Inherited by implicit conversion ArrowAssoc from PersistentEntity[Command, Event, State] to ArrowAssoc[PersistentEntity[Command, Event, State]]

Ungrouped