Uses of Class
io.nflow.engine.workflow.instance.WorkflowInstanceAction
Packages that use WorkflowInstanceAction
Package
Description
Services for for managing and querying nFlow engine during runtime.
Classes for describing and constructing workflow instances.
-
Uses of WorkflowInstanceAction in io.nflow.engine.internal.dao
Methods in io.nflow.engine.internal.dao with parameters of type WorkflowInstanceActionModifier and TypeMethodDescriptionlongWorkflowInstanceDao.insertWorkflowInstanceAction(WorkflowInstanceAction action) longWorkflowInstanceDao.insertWorkflowInstanceAction(WorkflowInstance instance, WorkflowInstanceAction action) voidWorkflowInstanceDao.updateWorkflowInstanceAfterExecution(WorkflowInstance instance, WorkflowInstanceAction action, List<WorkflowInstance> childWorkflows, List<WorkflowInstance> workflows, boolean createAction) -
Uses of WorkflowInstanceAction in io.nflow.engine.service
Methods in io.nflow.engine.service with parameters of type WorkflowInstanceActionModifier and TypeMethodDescriptionbooleanWorkflowInstanceService.updateWorkflowInstance(WorkflowInstance instance, WorkflowInstanceAction action) Update the workflow instance in the database if it is currently not running, and insert the workflow instance action. -
Uses of WorkflowInstanceAction in io.nflow.engine.workflow.instance
Fields in io.nflow.engine.workflow.instance with type parameters of type WorkflowInstanceActionModifier and TypeFieldDescriptionfinal List<WorkflowInstanceAction>WorkflowInstance.actionsThe list of actions.Methods in io.nflow.engine.workflow.instance that return WorkflowInstanceActionModifier and TypeMethodDescriptionWorkflowInstanceAction.Builder.build()Build the workflow instance action.Method parameters in io.nflow.engine.workflow.instance with type arguments of type WorkflowInstanceActionModifier and TypeMethodDescriptionWorkflowInstance.Builder.setActions(List<WorkflowInstanceAction> actions) Set the workflow instance actions.Constructors in io.nflow.engine.workflow.instance with parameters of type WorkflowInstanceActionModifierConstructorDescriptionBuilder(WorkflowInstanceAction action) Create a builder for a workflow instance action based on an existing workflow instance action.