-
-
Notifications
You must be signed in to change notification settings - Fork 0
Parallel
Sam Orme edited this page Feb 20, 2022
·
1 revision
The Parallel is a composite node. It will execute each child in order and it's result depends on the children's results and the parallel mode.
Parallels can have different modes, each mode produces a different result depending on the children's results. The node will return running unless the condition is met.
ExitOnAnySuccess - Returns success as soon as a child succeeds.
ExitOnAnyFailure - Returns failure as soon as a child fails.
ExitOnAnyCompletion - Returns the child's result if it is success or failure.
WaitForAllToComplete - Returns success when all children are no longer running.
WaitForAllToSucceed - Returns success when all children are successful.