Fluxyn Docs
NodesParallel

Wait Parallel

Waits for the branches created by a Parallel node and then continues.

Parallel

Use this when a flow should fan out and then join again after all or any branch completes.

When to use it

  • Join several parallel branches before one final step.
  • Continue after the first branch returns a useful result.

Routing behavior

Waits for a related Parallel node to finish all branches or the first branch, depending on configuration.

Properties

PropertyTypeRequiredDetails
mode
mode
selectOptionalWait for all branches or just the first one
parallelNodeId
parallelNodeId
stringOptionalID of the parallel node to wait for

Common mistakes

  • It must point at the correct Parallel node.
  • This is advanced runtime behavior.

Related nodes