Class EffectFactories<Event,State>
- Direct Known Subclasses:
EffectFactories$
Effect
directives - how an event sourced actor reacts on a command.
Created via EventSourcedBehavior.Effect
.
Not for user extension
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionnone()
Do not persist anythingnoReply()
WhenEventSourcedBehaviorWithEnforcedReplies
is used there will be compilation errors if the returned effect isn't aReplyEffect
.final EffectBuilder<Event,
State> Persist a single eventfinal EffectBuilder<Event,
State> Persist all of a the given events.<ReplyMessage>
ReplyEffect<Event,State> Send a reply message to the command.stash()
Stash the current command.stop()
Stop this persistent actorThis command is not handled, but it is not an error that it isn't.Unstash the commands that were stashed withEffectFactories.stash
.
-
Constructor Details
-
EffectFactories
public EffectFactories()
-
-
Method Details
-
persist
Persist a single event -
persist
Persist all of a the given events. Each event will be applied throughapplyEffect
separately but not until all events has been persisted. Ifcallback
is added throughEffectBuilder.thenRun
that will invoked after all the events has been persisted. -
none
Do not persist anything -
stop
Stop this persistent actor -
unhandled
This command is not handled, but it is not an error that it isn't. -
stash
Stash the current command. Can be unstashed later withEffect.thenUnstashAll
orEffectFactories.unstashAll
.Note that the stashed commands are kept in an in-memory buffer, so in case of a crash they will not be processed. They will also be discarded if the actor is restarted (or stopped) due to that an exception was thrown from processing a command or side effect after persisting. The stash buffer is preserved for persist failures if an
onPersistFailure
backoff supervisor strategy is defined.Side effects can be chained with
thenRun
. -
unstashAll
Unstash the commands that were stashed withEffectFactories.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 anotherunstashAll
.- See Also:
-
EffectBuilder.thenUnstashAll
-
reply
public <ReplyMessage> ReplyEffect<Event,State> reply(ActorRef<ReplyMessage> replyTo, ReplyMessage replyWithMessage) Send a reply message to the command. The type of the reply message must conform to the type specified by the passed replyToActorRef
.This has the same semantics as
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 withEventSourcedBehaviorWithEnforcedReplies
. WhenwithEnforcedReplies
is used there will be compilation errors if the returned effect isn't aReplyEffect
. The reply message will be sent also ifwithEnforcedReplies
isn't used, but then the compiler will not help finding mistakes. -
noReply
WhenEventSourcedBehaviorWithEnforcedReplies
is used there will be compilation errors if the returned effect isn't aReplyEffect
. ThisnoReply
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.
-