Uses of Class
io.serverlessworkflow.api.actions.Action
-
Packages that use Action Package Description io.serverlessworkflow.api.actions io.serverlessworkflow.api.branches io.serverlessworkflow.api.events io.serverlessworkflow.api.states -
-
Uses of Action in io.serverlessworkflow.api.actions
Methods in io.serverlessworkflow.api.actions that return Action Modifier and Type Method Description Action
Action. withActionDataFilter(ActionDataFilter actionDataFilter)
Action
Action. withCondition(String condition)
Action
Action. withEventRef(EventRef eventRef)
Action
Action. withFunctionRef(FunctionRef functionRef)
Action
Action. withId(String id)
Action
Action. withName(String name)
Action
Action. withNonRetryableErrors(List<String> nonRetryableErrors)
Action
Action. withRetryableErrors(List<String> retryableErrors)
Action
Action. withRetryRef(String retryRef)
Action
Action. withSleep(Sleep sleep)
Action
Action. withSubFlowRef(SubFlowRef subFlowRef)
-
Uses of Action in io.serverlessworkflow.api.branches
Methods in io.serverlessworkflow.api.branches that return types with arguments of type Action Modifier and Type Method Description List<Action>
Branch. getActions()
Actions to be executed in this branchMethod parameters in io.serverlessworkflow.api.branches with type arguments of type Action Modifier and Type Method Description void
Branch. setActions(List<Action> actions)
Actions to be executed in this branchBranch
Branch. withActions(List<Action> actions)
-
Uses of Action in io.serverlessworkflow.api.events
Methods in io.serverlessworkflow.api.events that return types with arguments of type Action Modifier and Type Method Description List<Action>
OnEvents. getActions()
Actions to be performed.Method parameters in io.serverlessworkflow.api.events with type arguments of type Action Modifier and Type Method Description void
OnEvents. setActions(List<Action> actions)
Actions to be performed.OnEvents
OnEvents. withActions(List<Action> actions)
-
Uses of Action in io.serverlessworkflow.api.states
Methods in io.serverlessworkflow.api.states that return Action Modifier and Type Method Description Action
CallbackState. getAction()
Action DefinitionMethods in io.serverlessworkflow.api.states that return types with arguments of type Action Modifier and Type Method Description List<Action>
ForEachState. getActions()
Actions to be executed for each of the elements of inputCollectionList<Action>
OperationState. getActions()
Actions Definitions (Required)Methods in io.serverlessworkflow.api.states with parameters of type Action Modifier and Type Method Description void
CallbackState. setAction(Action action)
Action DefinitionCallbackState
CallbackState. withAction(Action action)
Method parameters in io.serverlessworkflow.api.states with type arguments of type Action Modifier and Type Method Description void
ForEachState. setActions(List<Action> actions)
Actions to be executed for each of the elements of inputCollectionvoid
OperationState. setActions(List<Action> actions)
Actions Definitions (Required)ForEachState
ForEachState. withActions(List<Action> actions)
OperationState
OperationState. withActions(List<Action> actions)
Constructor parameters in io.serverlessworkflow.api.states with type arguments of type Action Constructor Description OperationState(OperationState.ActionMode actionMode, List<Action> actions, String name, DefaultState.Type type)
-