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 voidWorkflow. setStates(List<State> states)State Definitions (Required)WorkflowWorkflow. 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 StateStateDeserializer. 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 classCallbackStateThis state is used to wait for events from event sources and then transitioning to a next stateclassDefaultStateDefault StateclassEventStateThis 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.classForEachStateExecute a set of defined actions or workflows for each element of a data arrayclassInjectStateSet up and inject the state's data input to data output.classOperationStateThis state allows one or more functions to run in sequence or in parallel without waiting for any event.classParallelStateConsists of a number of states that are executed in parallelclassSleepStateThis state is used to wait for events from event sources and then transitioning to a next stateclassSwitchStatePermits transitions to other states based on criteria matching
-