Uses of Class
io.serverlessworkflow.api.states.OperationState.ActionMode
-
Packages that use OperationState.ActionMode Package Description io.serverlessworkflow.api.deserializers io.serverlessworkflow.api.states -
-
Uses of OperationState.ActionMode in io.serverlessworkflow.api.deserializers
Methods in io.serverlessworkflow.api.deserializers that return OperationState.ActionMode Modifier and Type Method Description OperationState.ActionMode
OperationStateActionModeDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.databind.DeserializationContext ctxt)
-
Uses of OperationState.ActionMode in io.serverlessworkflow.api.states
Methods in io.serverlessworkflow.api.states that return OperationState.ActionMode Modifier and Type Method Description static OperationState.ActionMode
OperationState.ActionMode. fromValue(String value)
OperationState.ActionMode
OperationState. getActionMode()
Specifies whether functions are executed in sequence or in parallel.static OperationState.ActionMode
OperationState.ActionMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static OperationState.ActionMode[]
OperationState.ActionMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.serverlessworkflow.api.states with parameters of type OperationState.ActionMode Modifier and Type Method Description void
OperationState. setActionMode(OperationState.ActionMode actionMode)
Specifies whether functions are executed in sequence or in parallel.OperationState
OperationState. withActionMode(OperationState.ActionMode actionMode)
Constructors in io.serverlessworkflow.api.states with parameters of type OperationState.ActionMode Constructor Description OperationState(OperationState.ActionMode actionMode, List<Action> actions, String name, DefaultState.Type type)
-