Package akka.javasdk.workflow
Interface Workflow.Effect.TransitionalEffect<T>
- All Superinterfaces:
Workflow.Effect<T>
- All Known Subinterfaces:
Workflow.Effect.Transitional
- Enclosing interface:
Workflow.Effect<T>
@Deprecated
public static interface Workflow.Effect.TransitionalEffect<T>
extends Workflow.Effect<T>
Deprecated.
A workflow effect type that contains information about the transition to the next step. This
could be also a special transition to pause or end the workflow.
-
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) Deprecated.Reply after for exampleupdateState.<R> Workflow.Effect<R> Deprecated.Reply after for exampleupdateState.
-
Method Details
-
thenReply
Deprecated.Reply after for exampleupdateState.- 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
Deprecated.Reply after for exampleupdateState.- 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.
-
Workflow.Effect.Transitionalinstead.