Packages

package typed

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. abstract class EventAdapter[E, P] extends AnyRef
  2. final class EventRejectedException extends RuntimeException

    Thrown if a journal rejects an event e.g.

    Thrown if a journal rejects an event e.g. due to a serialization error.

  3. trait ExpectingReply[ReplyMessage] extends AnyRef

    Commands may implement this trait to facilitate sending reply messages via Effect.thenReply.

    Commands may implement this trait to facilitate sending reply messages via Effect.thenReply.

    ReplyMessage

    The type of the reply message

  4. final case class PersistenceId(id: String) extends Product with Serializable

    Unique identifier in the backend data store (journal and snapshot store) of the persistent actor.

  5. sealed abstract class SideEffect[State] extends AnyRef

    A SideEffect is an side effect that can be chained after a main effect.

    A SideEffect is an side effect that can be chained after a main effect.

    Persist, none and unhandled are main effects. Then any number of call backs can be added to these effects with andThen.

    Not for user extension

Value Members

  1. object SideEffect