ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Executors.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/Executors.java (file contents):
Revision 1.7 by tim, Wed Jun 4 15:31:45 2003 UTC vs.
Revision 1.8 by dl, Fri Jun 6 18:42:17 2003 UTC

# Line 11 | Line 11 | import java.util.*;
11   * Factory and utility methods for the <tt>Executor</tt> classes
12   * defined in <tt>java.util.concurrent</tt>.
13   *
14 * <p>An Executor is a framework for executing Runnables.  The
15 * Executor manages queueing and scheduling of tasks, and creation and
16 * teardown of threads.  Depending on which concrete Executor class is
17 * being used, tasks may execute in a newly created thread, an
18 * existing task-execution thread, or the thread calling execute(),
19 * and may execute sequentially or concurrently.
20 *
14   * @since 1.5
15   * @see Executor
16   * @see ExecutorService

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines