In
WorldServer, you can reuse workflows by executing multiple sub-workflows at the same time. In parallel sub-workflow steps, much like in parallel review steps, the workflow is split and waits for all the sub-workflows to be completed.
Parallel sub-workflow steps have a result of Success or Failure, which you can use to control the workflow after executing the sub-workflow. This result is determined by assessing the individual results from each sub-workflow and constructing an aggregate result. Each parallel sub-workflow step has options that control how it determines the aggregate result. The options are:
- And: If you select
And, all the sub-workflow steps need to have a result of Success for the parallel sub-workflow step to have the same result.
- Or: If you select
Or, at least one of the sub-worklow steps needs to have a result of Success for the parallel sub-workflow step to have the same result.