Font size:
Parallel-Create
Description
Creates a referrable parallel container as an alternative to using the parallel container task directly. Allows tasks or macros to be scheduled for execution in a dynamic fashion.
Parameters
| Attribute | Description | Required |
|---|---|---|
| id | The name of the referrable parallel container to be created | Yes |
| failonany | true or false. If true, will fail immediately rather than executing all threads regardless of error | Yes |
| threadCount | Number of parallel threads to schedule concurrently | Yes |
Parameters specified as nested elements
NONE
Examples
Create a refererrable parallel container with maximum of three concurrent threads and will continue to execute if any of them fail.
<parallel-create id="parallel-update"
failonany="false"
threadCount="3"/>



