Notes:
| - You can only use workflows that belong to the same project.
- You can add multiple workflows for recursive workflow task execution.
- If you add more than one recursive workflow tasks in a workflow, you need to connect them to determine the execution sequence.
- Adding predecessor or successor node to Workflow Task is optional. Even if you add predecessor or successor node, Workflow Task doesn’t take any input from its Predecessor and does not give any output to its Successor
- If the Workflow Task has any connecting nodes (predecessor or successor), the workflow task is executed first, and then the rest of the nodes in the workflow are executed.
- The workflow execution sequence is LIFO – Last In Fast Out.
For example, If Workflow1 calls Workflow2, and Workflow 2 calls Workflow3 and you run Workflow1, then the execution sequence is - Workflow3 is executed first, followed by Workflow2 and in the end Workflow1 is executed.
- If Workflow Task fails, then its successor will not be executed.
|