Allows workflows to execute multiple subtasks concurrently, enabling parallel processing and improving the overall efficiency of the workflow. By defining a set of subtasks to perform concurrently, the Fork task facilitates the execution of complex operations in parallel, ensuring that multiple tasks can be executed simultaneously.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/serverlessworkflow/specification/llms.txt
Use this file to discover all available pages before exploring further.
Properties
The tasks to perform concurrently.
Indicates whether or not the concurrent tasks are racing against each other, with a single possible winner, which sets the composite task’s output.
- If set to
false, the task returns an array that includes the outputs from each branch, preserving the order in which the branches are declared - If set to
true, the task returns only the output of the winning branch