Parallel Selector

Similar to the Selector task, the Parallel Selector task will return success as soon as a child task returns success. The Parallel Selector task will run all of its children tasks simultaneously versus running each task one at a time. If one task returns success the parallel selector task will end all of the child tasks and return success. If every child task returns failure then the parallel selector task will return failure.

The Parallel Selector task will run all children at the same time, similar to the Parallel task.

The Return Status task returned a status of running. Unlike the Parallel task, if the child of a Parallel Selector task returns failure then the rest of the children will continue to execute.

The Parallel Selector task will return success as soon as a single child returns success. In this example the Return Status task returned success which aborts the two Idle tasks and the Parallel Selector then returns a status of success.