|
||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |
Packages that use Flow | |
---|---|
flux | File Orchestration Solutions for Banking and Finance |
Uses of Flow in flux |
---|
Methods in flux that return Flow | |
---|---|
Flow |
DatabaseStoredProcedureAction.addFlow(Action action)
The flow that is followed when this Database Stored Procedure Action fires. |
Flow |
DatabaseQueryAction.addFlow(Action action)
The flow that is followed when this Database Query Action fires with unconsumed result set data from the stored procedure call. |
Flow |
TimerTrigger.addFlow(Action action)
The flow that is followed when this Timer Trigger fires successfully. |
Flow |
ForEachCollectionElementAction.addFlow(Action action)
The flow that is followed when collection data is still available to be processed. |
Flow |
Action.addFlow(Action action)
When an action finishes executing, this action is executed next. |
Flow |
Action.addFlow(Action action,
java.lang.String condition)
When an action finishes executing, this action is executed next if its condition evaluates to true. |
Flow |
Action.addSignalFlow(Action action,
java.lang.String signal)
If the specified signal is raised, the given action is executed next. |
Flow |
Action.setElseFlow(Action action)
Sets the next action to execute if all other flow conditions are not satisfied at runtime. |
Flow |
Action.setErrorFlow(Action action)
If this action ends with an error, sets the next action to execute; the transaction will NOT be rolled back as this error flow executes and before the error action executes. |
Flow |
Action.setErrorFlowWithoutRollback(Action action)
If this action ends with an error, sets the next action to execute; the transaction will NOT be rolled back as execution continues along this error flow. |
Flow |
Action.setErrorFlowWithRollback(Action action)
If this action ends with an error, sets the next action to execute; the transaction will be rolled back as this error flow executes and before the error action executes. |
Flow |
Action.setTimeoutFlow(Action action)
Sets the next action to execute if this action times out. |
Methods in flux that return types with arguments of type Flow | |
---|---|
java.util.Set<Flow> |
Action.getFlows()
Returns the set of all outgoing flows from this action. |
java.util.Set<Flow> |
FlowChart.getFlows()
Returns the set of all flows in this flow chart. |
Methods in flux with parameters of type Flow | |
---|---|
boolean |
Action.removeFlow(Flow flow)
Removes the specified flow from this action. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |