Uses of Interface
io.serverlessworkflow.api.interfaces.State
-
Packages that use State Package Description io.serverlessworkflow.api io.serverlessworkflow.api.deserializers io.serverlessworkflow.api.states -
-
Uses of State in io.serverlessworkflow.api
Methods in io.serverlessworkflow.api that return types with arguments of type State Modifier and Type Method Description List<State>
Workflow. getStates()
State Definitions (Required)Method parameters in io.serverlessworkflow.api with type arguments of type State Modifier and Type Method Description void
Workflow. setStates(List<State> states)
State Definitions (Required)Workflow
Workflow. withStates(List<State> states)
Constructor parameters in io.serverlessworkflow.api with type arguments of type State Constructor Description Workflow(String id, String name, String version, List<State> states)
-
Uses of State in io.serverlessworkflow.api.deserializers
Methods in io.serverlessworkflow.api.deserializers that return State Modifier and Type Method Description State
StateDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.databind.DeserializationContext ctxt)
-
Uses of State in io.serverlessworkflow.api.states
Classes in io.serverlessworkflow.api.states that implement State Modifier and Type Class Description class
CallbackState
This state is used to wait for events from event sources and then transitioning to a next stateclass
DefaultState
Default Stateclass
EventState
This state is used to wait for events from event sources and then to invoke one or more functions to run in sequence or in parallel.class
ForEachState
Execute a set of defined actions or workflows for each element of a data arrayclass
InjectState
Set up and inject the state's data input to data output.class
OperationState
This state allows one or more functions to run in sequence or in parallel without waiting for any event.class
ParallelState
Consists of a number of states that are executed in parallelclass
SleepState
This state is used to wait for events from event sources and then transitioning to a next stateclass
SwitchState
Permits transitions to other states based on criteria matching
-