parallel

Description

A job which executes it's child jobs in parallel.

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 children, or not complete if any of the children fail to complete.

Properties

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

Elements

jobs

Required: No, but pointless if missing.

The child jobs.

Example

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


(c) Rob Gordon 2005 - 2009