Fork/Join
Executes each branch in parallel (list of tasks) as a separate and isolated sub-flow. Branches are executed internally in sequence.
Type: fork-join/v1
How is this guide?
Last updated on
Each
Iterates over each item in list, in parallel. Note, that since it iterates over each item in parallel, there is no guarantee of completion order.
Graph
Directs execution across a set of named nodes connected by dynamic transitions, executing each node's tasks in sequence until a node with no next transition is reached.