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.
| executorService | The ExecutorService to use. |
| jobs | The child jobs. |
| name | A name, can be any text. |
| Example 1 | Two jobs running in parallel. |
| Configured By | ELEMENT |
| Access | WRITE_ONLY |
| Required | No. |
The ExecutorService to use. This will be automatically set by Oddjob.
| Configured By | ELEMENT |
| Access | WRITE_ONLY |
| Required | No, but pointless if missing. |
The child jobs.
| Configured By | ATTRIBUTE |
| Access | READ_WRITE |
| Required | No. |
A name, can be any text.
Two jobs running in parallel.
<oddjob>
<job>
<parallel>
<jobs>
<echo>This runs in parallel</echo>
<echo>With this which could be displayed first!</echo>
</jobs>
</parallel>
</job>
</oddjob>