Parallel
All of the direct children of this tag are executed in
parallel, this tag only terminates its execution once all of
the children have completed their executions.
Children Tags
Usage Examples
Example #1
<parallel>
<component id="DTFA1">
<echo>Echo a</echo>
</component>
<component id="DTFA2">
<echo>Echo b</echo>
</component>
</parallel>
Example #2
<parallel>
<for property="i" range="1..100">
<echo>Echo first thread ${i}</echo>
</for>
<for property="i" range="1..100">
<echo>Echo second thread ${i}</echo>
</for>
</parallel>