Uses of Interface
de.xima.fc.interfaces.workflow.execution.ISuccessResultData
-
Packages that use ISuccessResultData Package Description de.xima.fc.exceptions Package für allgemeine Exceptionsde.xima.fc.interfaces.workflow.execution de.xima.fc.ms.test.workflow de.xima.fc.workflow.processor.model -
-
Uses of ISuccessResultData in de.xima.fc.exceptions
Classes in de.xima.fc.exceptions that implement ISuccessResultData Modifier and Type Class Description class
AbstractSuccessAbruptCompletionException
Used by a node to indicate that the node completed abruptly by issuing a break or continue statement that jumps out of the current loop iteration.class
NodeReturnedException
Used by a node to indicate that the node completed abruptly by issuing a return statement.class
NodeTransferredControlException
Used by a node to indicate that the node completed abruptly by issuing a break or continue statement that jumps out of the current loop iteration. -
Uses of ISuccessResultData in de.xima.fc.interfaces.workflow.execution
Subinterfaces of ISuccessResultData in de.xima.fc.interfaces.workflow.execution Modifier and Type Interface Description interface
IControlTransferringCompletionResult
Represents the result ofINodeHandler#execute
when the node was completed abruptly by issuing a local control transfer statement (e.g.interface
INormalCompletionResult
Represents the result ofINodeHandler#execute
when the node was executed normally, i.e.interface
IReturningCompletionResult
Represents the result ofINodeHandler#execute
when the node was completed abruptly by issuing a return statement.Methods in de.xima.fc.interfaces.workflow.execution that return ISuccessResultData Modifier and Type Method Description default ISuccessResultData
IWorkflowNodeResult. getSuccessResultData()
-
Uses of ISuccessResultData in de.xima.fc.ms.test.workflow
Methods in de.xima.fc.ms.test.workflow that return ISuccessResultData Modifier and Type Method Description protected static ISuccessResultData
AEventRunnerTest. assertSuccess(IEventExecutionResult result, WorkflowNode node)
protected static ISuccessResultData
AEventRunnerTest. assertSuccess(IEventExecutionResult result, WorkflowNode node, int... indices)
protected static ISuccessResultData
AEventRunnerTest. getNodeSuccessResultData(IEventExecutionResult result, WorkflowNode node)
-
Uses of ISuccessResultData in de.xima.fc.workflow.processor.model
Classes in de.xima.fc.workflow.processor.model that implement ISuccessResultData Modifier and Type Class Description class
NormalCompletionResult
POJO implementation ofINormalCompletionResult
.
-