diff --git a/docs/manual/CoreTasks/parallel.html b/docs/manual/CoreTasks/parallel.html index d6d12833b..d4d49b61c 100644 --- a/docs/manual/CoreTasks/parallel.html +++ b/docs/manual/CoreTasks/parallel.html @@ -37,6 +37,10 @@ thread will be blocked waiting for all the child threads to complete.
tasks in other threads will continue to run until all threads have completed. In this sitiuation, the parallel task will also fail. +The parallel task may be combined with the +sequential task to define sequences of tasks to be executed on each thread +within the parallel block
+<parallel> diff --git a/docs/manual/CoreTasks/sequential.html b/docs/manual/CoreTasks/sequential.html new file mode 100644 index 000000000..38603c9f0 --- /dev/null +++ b/docs/manual/CoreTasks/sequential.html @@ -0,0 +1,40 @@ + + + + +Ant User Manual + + + + +Sequential
+Description
+Sequential is a container task - it can contain other Ant tasks. The nested +tasks are simply executed in sequence. Sequential's primary use is to support +the sequential execution of a subset of tasks within the +parallel task
+ +The sequential task has no attributes and does not support any nested +elements apart from Ant tasks. Any valid Ant task may be embedded within the +sequential task.
+ +Example
++<parallel> + <wlrun ...> + <sequential> + <sleep seconds="30"/> + <junit ...> + <wlstop/> + </sequential> +</parallel> ++This example shows how the sequential task is used to execute three tasks in +sequence, while another task is being executed in a separate thread. + +
+Copyright © 2000,2001 Apache Software Foundation. All rights +Reserved.
+ + + diff --git a/docs/manual/coretasklist.html b/docs/manual/coretasklist.html index cab1b77a2..14e5bd93c 100644 --- a/docs/manual/coretasklist.html +++ b/docs/manual/coretasklist.html @@ -60,6 +60,7 @@ Rename
Replace
Rmic
+Sequential
SignJar
Sleep
Sql