diff --git a/docs/manual/CoreTasks/parallel.html b/docs/manual/CoreTasks/parallel.html index aec859f56..738132565 100644 --- a/docs/manual/CoreTasks/parallel.html +++ b/docs/manual/CoreTasks/parallel.html @@ -11,6 +11,31 @@

Description

Parallel is a container task - it can contain other Ant tasks. Each nested task within the parallel task will be executed in its own thread.

+

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
threadCountMaximum numbers of thread to use.No
threadsPerProcessorMaximum number of threads to use per available processor +(Requires JDK 1.4)No, defers to threadCount
pollIntervalMaximum number of milliseconds to wait for before checking +when waiting for available threads.No, default is 1000

Parallel tasks have a number of uses in an Ant build file including: