Font size:
Parallel-Add
Description
Schedules a task for execution within the referred parallel container.
Parameters
| Attribute | Description | Required |
|---|---|---|
| refid | The name of the referred parallel container | Yes |
Parameters specified as nested elements
any ant task
Examples
Schedule the nested Update command to the referred parallel container parallel-update
<parallel-add id="parallel-update"
failonany="false"
threadCount="3">
<exec executable="ad"
failonerror="false"
outputproperty="update.out"
errorproperty="update.err"
resultproperty="update.res">
<arg line="-p MyProject -t Node -o myNode -c Update"/>
</exec>
</parallel-add>



