Uses of Interface
de.xima.fc.interfaces.workflow.execution.IWorkflowNodeResult
-
-
Uses of IWorkflowNodeResult in de.xima.fc.interfaces.workflow.execution
Methods in de.xima.fc.interfaces.workflow.execution that return IWorkflowNodeResult Modifier and Type Method Description IWorkflowNodeResult
IWorkflowVariableHandler. getResultForNode(WorkflowNode node)
Finds the latest result for the given node.Methods in de.xima.fc.interfaces.workflow.execution that return types with arguments of type IWorkflowNodeResult Modifier and Type Method Description com.google.common.collect.ImmutableMap<Long,com.google.common.collect.ImmutableList<IWorkflowNodeResult>>
ITaskExecutionResult. getResultMap()
List<IWorkflowNodeResult>
IWorkflowVariableHandler. getResultsForNode(WorkflowNode node)
Finds all results for the given node. -
Uses of IWorkflowNodeResult in de.xima.fc.workflow.processor.iface
Methods in de.xima.fc.workflow.processor.iface with parameters of type IWorkflowNodeResult Modifier and Type Method Description void
IWorkflowExecutionListener. onAfterExecuteNode(WorkflowTask task, WorkflowNode node, IWorkflowNodeResult result)
Invoked just after aWorkflowNode
was executed (whether successfully or not). -
Uses of IWorkflowNodeResult in de.xima.fc.workflow.processor.logic.execution
Methods in de.xima.fc.workflow.processor.logic.execution that return IWorkflowNodeResult Modifier and Type Method Description protected IWorkflowNodeResult
WorkflowExecutionContext. doExecute(WorkflowNode node)
-
Uses of IWorkflowNodeResult in de.xima.fc.workflow.processor.model
Classes in de.xima.fc.workflow.processor.model that implement IWorkflowNodeResult Modifier and Type Class Description class
WorkflowNodeResult
POJO implementation ofIWorkflowNodeResult
.Methods in de.xima.fc.workflow.processor.model that return IWorkflowNodeResult Modifier and Type Method Description static IWorkflowNodeResult
WorkflowNodeResult. normal(INormalCompletionResult result)
static IWorkflowNodeResult
WorkflowNodeResult. normalEmpty()
static IWorkflowNodeResult
WorkflowNodeResult. returning(NodeReturnedException e)
static IWorkflowNodeResult
WorkflowNodeResult. throwing(NodeThrewException e)
-