Control flow nodes¶
The control flow nodes of Integrator define the start and end of a workflow and determine the flow path of action nodes. The supported nodes are as follows:
Start¶
The start point of all workflows. Required to run a workflow.
End¶
The end point of all workflows. Required to end a workflow.
Decision¶
Branches the workflow based on conditions. It uses as many switch case statements as the number of branches.
Fork¶
Branches the workflow without conditions for concurrent, parallel execution.
Join¶
Joins several nodes.