Packages

abstract class ReplyEffect[+Event, State] extends Effect[Event, State]

EventSourcedBehaviorWithEnforcedReplies 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 Effects().reply, Effects().noReply, Effect.thenReply, or Effect.thenNoReply.

Self Type
EffectImpl[Event, State]
Annotations
@DoNotInherit()
Source
Effect.scala
Linear Supertypes
Effect[Event, State], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReplyEffect
  2. Effect
  3. AnyRef
  4. 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 ReplyEffect()

Abstract Value Members

  1. abstract def andThen(chainedEffect: SideEffect[State]): Effect[Event, State]

    Run the given callback after the current Effect

    Run the given callback after the current Effect

    Definition Classes
    Effect
  2. abstract def thenNoReply(): ReplyEffect[Event, State]

    When EventSourcedBehaviorWithEnforcedReplies is used there will be compilation errors if the returned effect isn't a ReplyEffect.

    When EventSourcedBehaviorWithEnforcedReplies is used there will be compilation errors if the returned effect isn't a ReplyEffect. This thenNoReply can be used as a conscious decision that a reply shouldn't be sent for a specific command or the reply will be sent later.

    Definition Classes
    Effect
  3. abstract def thenStop(): Effect[Event, State]

    The side effect is to stop the actor

    The side effect is to stop the actor

    Definition Classes
    Effect
  4. abstract def thenUnstashAll(): Effect[Event, State]

    Unstash the commands that were stashed with EffectFactories.stash.

    Unstash the commands that were stashed with EffectFactories.stash.

    It's allowed to stash messages while unstashing. Those newly added commands will not be processed by this unstashAll effect and have to be unstashed by another unstashAll.

    Definition Classes
    Effect

Concrete Value Members

  1. def thenReply[ReplyMessage](cmd: ExpectingReply[ReplyMessage], replyWithMessage: Function[State, ReplyMessage]): ReplyEffect[Event, State]

    Send a reply message to the command, which implements ExpectingReply.

    Send a reply message to the command, which implements ExpectingReply. The type of the reply message must conform to the type specified in ExpectingReply.replyTo ActorRef.

    This has the same semantics as cmd.replyTo().tell.

    It is provided as a convenience (reducing boilerplate) and a way to enforce that replies are not forgotten when the EventSourcedBehavior is created with EventSourcedBehaviorWithEnforcedReplies. When withEnforcedReplies is used there will be compilation errors if the returned effect isn't a ReplyEffect. The reply message will be sent also if withEnforcedReplies isn't used, but then the compiler will not help finding mistakes.

    Definition Classes
    Effect
  2. final def thenRun(callback: japi.function.Effect): Effect[Event, State]

    Run the given callback.

    Run the given callback. Callbacks are run sequentially.

    Definition Classes
    Effect
  3. final def thenRun(callback: Procedure[State]): Effect[Event, State]

    Run the given callback.

    Run the given callback. Callbacks are run sequentially.

    Definition Classes
    Effect