Package akka.javasdk.workflow
Interface Workflow.Effect.Transitional
- All Superinterfaces:
Workflow.Effect<Void>
,Workflow.Effect.TransitionalEffect<Void>
- Enclosing interface:
Workflow.Effect<T>
public static interface Workflow.Effect.Transitional
extends Workflow.Effect.TransitionalEffect<Void>
-
Nested Class Summary
Nested classes/interfaces inherited from interface akka.javasdk.workflow.Workflow.Effect
Workflow.Effect.Builder<S>, Workflow.Effect.PersistenceEffectBuilder<T>, Workflow.Effect.Transitional, Workflow.Effect.TransitionalEffect<T>
-
Method Summary
Modifier and TypeMethodDescription<R> Workflow.Effect
<R> thenReply
(R message) Reply after for exampleupdateState
.<R> Workflow.Effect
<R> Reply after for exampleupdateState
.
-
Method Details
-
thenReply
Reply after for exampleupdateState
.- Specified by:
thenReply
in interfaceWorkflow.Effect.TransitionalEffect<Void>
- Type Parameters:
R
- The type of the message that must be returned by this call.- Parameters:
message
- The payload of the reply.- Returns:
- A message reply.
-
thenReply
Reply after for exampleupdateState
.- Specified by:
thenReply
in interfaceWorkflow.Effect.TransitionalEffect<Void>
- Type Parameters:
R
- The type of the message that must be returned by this call.- Parameters:
message
- The payload of the reply.metadata
- The metadata for the message.- Returns:
- A message reply.
-