From b8d229b18c3f64af5063f6e2bb3be5da9e330c38 Mon Sep 17 00:00:00 2001
From: Conor MacNeill
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