package typed

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final case class DeleteEventsCompleted(toSequenceNr: Long) extends EventSourcedSignal with Product with Serializable
  2. final case class DeleteEventsFailed(toSequenceNr: Long, failure: Throwable) extends EventSourcedSignal with Product with Serializable
  3. final case class DeleteSnapshotsCompleted(target: DeletionTarget) extends EventSourcedSignal with Product with Serializable
  4. final case class DeleteSnapshotsFailed(target: DeletionTarget, failure: Throwable) extends EventSourcedSignal with Product with Serializable
  5. sealed trait DeletionTarget extends AnyRef

    Not for user extension

    Not for user extension

    Annotations
    @DoNotInherit()
  6. abstract class EventAdapter[E, P] extends AnyRef
  7. 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.

  8. sealed trait EventSourcedSignal extends Signal

    Supertype for all Akka Persistence Typed specific signals

    Supertype for all Akka Persistence Typed specific signals

    Not for user extension

    Annotations
    @DoNotInherit()
  9. 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

  10. 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.

  11. sealed abstract class RecoveryCompleted extends EventSourcedSignal
    Annotations
    @DoNotInherit()
  12. final case class RecoveryFailed(failure: Throwable) extends EventSourcedSignal with Product with Serializable
  13. final case class SnapshotCompleted(metadata: SnapshotMetadata) extends EventSourcedSignal with Product with Serializable
  14. final case class SnapshotFailed(metadata: SnapshotMetadata, failure: Throwable) extends EventSourcedSignal with Product with Serializable
  15. final class SnapshotMetadata extends AnyRef

    Snapshot metadata.

  16. final class SnapshotSelectionCriteria extends AnyRef

    Selection criteria for loading and deleting snapshots.

Ungrouped