parallel

Description

A job which contains many child jobs and executes them all in parallel each on a separate thread.

The return state for this job depends on the return states of all the children - Complete if all the children complete, exception if there are any exceptions in the chilren, or not complete if any of the children fail to complete.

Properties

NameDescriptionRequired
name A name, can be any text. No.

Elements

Any

Required: No, but pointless if missing.

The child jobs.

Example

 <parallel>
   <echo message="This runs in parallel,">/>
   <echo message="with this.">/>
 </parallel>
 


(c) Rob Gordon 2005