Flow controls
Loop
Loops sequentially over list of items.
Loops sequentially over list of items.
Type: loop/v1
Fork/Join
Executes each branch in parallel (list of tasks) as a separate and isolated sub-flow. Branches are executed internally in sequence.
Map
Produces a new collection of values by mapping each value in list through defined task, in parallel. When execution is finished on all items, the `map` task will return a list of execution results in an order which corresponds to the order of the source list.