Packages

package scaladsl

Content Hierarchy
Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Effect[+Event, State] extends AnyRef

    A command handler returns an Effect directive that defines what event or events to persist.

    A command handler returns an Effect directive that defines what event or events to persist.

    Instances are created through the factories in the Effect companion object.

    Not for user extension.

    Annotations
    @DoNotInherit()
  2. trait EffectBuilder[+Event, State] extends Effect[Event, State]

    A command handler returns an Effect directive that defines what event or events to persist.

    A command handler returns an Effect directive that defines what event or events to persist.

    Instances are created through the factories in the Effect companion object.

    Additional side effects can be performed in the callback thenRun

    Not for user extension.

    Annotations
    @DoNotInherit()
  3. trait EventSourcedBehavior[Command, Event, State] extends DeferredBehavior[Command]

    Further customization of the EventSourcedBehavior can be done with the methods defined here.

    Further customization of the EventSourcedBehavior can be done with the methods defined here.

    Not for user extension

    Annotations
    @DoNotInherit()
  4. trait Recovery extends AnyRef

    Strategy for recovery of snapshots and events.

  5. trait ReplicationContext extends AnyRef

    Provides access to replication specific state

    Provides access to replication specific state

    Not for user extension

    Annotations
    @DoNotInherit()
  6. trait ReplyEffect[+Event, State] extends Effect[Event, State]

    EventSourcedBehavior.withEnforcedReplies can be used to enforce that replies are not forgotten.

    EventSourcedBehavior.withEnforcedReplies can be used to enforce that replies 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.

    Not intended for user extension.

    Annotations
    @DoNotInherit()
  7. trait RetentionCriteria extends AnyRef

    Criteria for retention/deletion of snapshots and events.

  8. trait SnapshotCountRetentionCriteria extends RetentionCriteria
    Annotations
    @DoNotInherit()

Value Members

  1. object Effect

    Factory methods for creating Effect directives - how an event sourced actor reacts on a command.

  2. object EventSourcedBehavior
  3. object PersistentFSMMigration

    Helper functions for migration from PersistentFSM to Persistence Typed

  4. object Recovery

    Strategy for recovery of snapshots and events.

  5. object ReplicatedEventSourcing
  6. object RetentionCriteria

    Criteria for retention/deletion of snapshots and events.

Ungrouped