Package | Description |
---|---|
flux |
File Orchestration Solutions for Banking and Finance
|
Modifier and Type | Method and Description |
---|---|
Flow |
Action.addFlow(Action action)
When an action finishes executing, this action is executed next.
|
Flow |
DatabaseStoredProcedureAction.addFlow(Action action)
The flow that is followed when this Database Stored Procedure Action fires.
|
Flow |
DatabaseQueryCollectionAction.addFlow(Action action)
The flow that is followed when this Database Query Collection Action fires.
|
Flow |
TimerTrigger.addFlow(Action action)
The flow that is followed when this Timer Trigger fires successfully.
|
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 |
ForEachCollectionElementAction.addFlow(Action action)
The flow that is followed when collection data is still available to be
processed.
|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Action.removeFlow(Flow flow)
Removes the specified flow from this action.
|
© 2000-2025 Flux Corporation. All rights reserved.