You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

sequential.html 1.1 KiB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Sequential Task</title>
  5. </head>
  6. <body>
  7. <h2>Sequential</h2>
  8. <h3>Description</h3>
  9. <p>Sequential is a container task - it can contain other Ant tasks. The nested
  10. tasks are simply executed in sequence. Sequential's primary use is to support
  11. the sequential execution of a subset of tasks within the
  12. <a href="parallel.html">parallel</a> task</p>
  13. <p>The sequential task has no attributes and does not support any nested
  14. elements apart from Ant tasks. Any valid Ant task may be embedded within the
  15. sequential task.</p>
  16. <h3>Example</h3>
  17. <pre>
  18. &lt;parallel&gt;
  19. &lt;wlrun ...&gt;
  20. &lt;sequential&gt;
  21. &lt;sleep seconds=&quot;30&quot;/&gt;
  22. &lt;junit ...&gt;
  23. &lt;wlstop/&gt;
  24. &lt;/sequential&gt;
  25. &lt;/parallel&gt;
  26. </pre>
  27. <p>This example shows how the sequential task is used to execute three tasks in
  28. sequence, while another task is being executed in a separate thread. </p>
  29. <hr>
  30. <p align="center">Copyright &copy; 2001 Apache Software Foundation. All rights
  31. Reserved.</p>
  32. </body>
  33. </html>