ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Executors.java
Revision: 1.11
Committed: Wed Jun 18 10:18:36 2003 UTC (20 years, 11 months ago) by jozart
Branch: MAIN
Changes since 1.10: +3 -3 lines
Log Message:
Changed modifier order for DelegatedExecutorService to private static class

File Contents

# User Rev Content
1 tim 1.1 /*
2 dl 1.2 * Written by Doug Lea with assistance from members of JCP JSR-166
3     * Expert Group and released to the public domain. Use, modify, and
4     * redistribute this code in any way without acknowledgement.
5 tim 1.1 */
6    
7     package java.util.concurrent;
8 dl 1.2 import java.util.*;
9 tim 1.1
10     /**
11 dl 1.2 * Factory and utility methods for the <tt>Executor</tt> classes
12     * defined in <tt>java.util.concurrent</tt>.
13 tim 1.1 *
14     * @since 1.5
15     * @see Executor
16 dl 1.2 * @see ExecutorService
17 tim 1.1 * @see Future
18     *
19     * @spec JSR-166
20 jozart 1.11 * @revised $Date: 2003/06/11 13:17:20 $
21     * @editor $Author: dl $
22 tim 1.1 */
23     public class Executors {
24    
25     /**
26 dl 1.2 * A wrapper class that exposes only the ExecutorService methods
27     * of an implementation.
28 tim 1.6 */
29 jozart 1.11 private static class DelegatedExecutorService implements ExecutorService {
30 dl 1.2 private final ExecutorService e;
31     DelegatedExecutorService(ExecutorService executor) { e = executor; }
32     public void execute(Runnable command) { e.execute(command); }
33     public void shutdown() { e.shutdown(); }
34     public List shutdownNow() { return e.shutdownNow(); }
35     public boolean isShutdown() { return e.isShutdown(); }
36     public boolean isTerminated() { return e.isTerminated(); }
37     public boolean awaitTermination(long timeout, TimeUnit unit)
38     throws InterruptedException {
39     return e.awaitTermination(timeout, unit);
40     }
41     }
42    
43     /**
44 tim 1.1 * Creates a thread pool that reuses a fixed set of threads
45     * operating off a shared unbounded queue.
46     *
47     * @param nThreads the number of threads in the pool
48     * @return the newly created thread pool
49     */
50 dl 1.2 public static ExecutorService newFixedThreadPool(int nThreads) {
51     return new DelegatedExecutorService
52     (new ThreadPoolExecutor(nThreads, nThreads,
53     0L, TimeUnit.MILLISECONDS,
54 dl 1.3 new LinkedBlockingQueue<Runnable>()));
55 dl 1.2 }
56    
57     /**
58     * Creates a thread pool that reuses a fixed set of threads
59     * operating off a shared unbounded queue, using the provided
60     * ThreadFactory to create new threads when needed.
61     *
62     * @param nThreads the number of threads in the pool
63     * @param threadfactory the factory to use when creating new threads
64     * @return the newly created thread pool
65     */
66     public static ExecutorService newFixedThreadPool(int nThreads, ThreadFactory threadFactory) {
67     return new DelegatedExecutorService
68     (new ThreadPoolExecutor(nThreads, nThreads,
69     0L, TimeUnit.MILLISECONDS,
70 dl 1.3 new LinkedBlockingQueue<Runnable>(),
71 dl 1.2 threadFactory, null));
72     }
73    
74     /**
75     * Creates an Executor that uses a single worker thread operating
76     * off an unbounded queue. (Note however that if this single
77     * thread terminates due to a failure during execution prior to
78     * shutdown, a new one will take its place if needed to execute
79     * subsequent tasks.) Tasks are guaranteed to execute
80     * sequentially, and no more than one task will be active at any
81     * given time.
82     *
83     * @return the newly-created single-threaded Executor
84     */
85     public static ExecutorService newSingleThreadExecutor() {
86     return new DelegatedExecutorService
87 tim 1.6 (new ThreadPoolExecutor(1, 1,
88 dl 1.2 0L, TimeUnit.MILLISECONDS,
89 dl 1.3 new LinkedBlockingQueue<Runnable>()));
90 dl 1.2 }
91    
92     /**
93     * Creates an Executor that uses a single worker thread operating
94     * off an unbounded queue, and uses the provided ThreadFactory to
95     * create new threads when needed.
96     * @param threadfactory the factory to use when creating new
97     * threads
98     *
99     * @return the newly-created single-threaded Executor
100     */
101     public static ExecutorService newSingleThreadExecutor(ThreadFactory threadFactory) {
102     return new DelegatedExecutorService
103 tim 1.6 (new ThreadPoolExecutor(1, 1,
104 dl 1.2 0L, TimeUnit.MILLISECONDS,
105 dl 1.3 new LinkedBlockingQueue<Runnable>(),
106 dl 1.2 threadFactory, null));
107 tim 1.1 }
108    
109     /**
110     * Creates a thread pool that creates new threads as needed, but
111     * will reuse previously constructed threads when they are
112     * available. These pools will typically improve the performance
113     * of programs that execute many short-lived asynchronous tasks.
114     * Calls to <tt>execute</tt> will reuse previously constructed
115     * threads if available. If no existing thread is available, a new
116     * thread will be created and added to the pool. Threads that have
117     * not been used for sixty seconds are terminated and removed from
118     * the cache. Thus, a pool that remains idle for long enough will
119     * not consume any resources.
120     *
121     * @return the newly created thread pool
122     */
123 dl 1.2 public static ExecutorService newCachedThreadPool() {
124     return new DelegatedExecutorService
125     (new ThreadPoolExecutor(0, Integer.MAX_VALUE,
126     60, TimeUnit.SECONDS,
127 dl 1.3 new SynchronousQueue<Runnable>()));
128 tim 1.1 }
129    
130     /**
131 dl 1.2 * Creates a thread pool that creates new threads as needed, but
132     * will reuse previously constructed threads when they are
133 tim 1.6 * available, and uses the provided
134 dl 1.2 * ThreadFactory to create new threads when needed.
135     * @param threadfactory the factory to use when creating new threads
136 tim 1.1 * @return the newly created thread pool
137     */
138 dl 1.2 public static ExecutorService newCachedThreadPool(ThreadFactory threadFactory) {
139     return new DelegatedExecutorService
140     (new ThreadPoolExecutor(0, Integer.MAX_VALUE,
141     60, TimeUnit.SECONDS,
142 dl 1.3 new SynchronousQueue<Runnable>(),
143 dl 1.2 threadFactory, null));
144 tim 1.1 }
145    
146     /**
147     * Executes a Runnable task and returns a Future representing that
148     * task.
149     *
150     * @param executor the Executor to which the task will be submitted
151     * @param task the task to submit
152     * @param value the value which will become the return value of
153     * the task upon task completion
154 dl 1.5 * @return a Future representing pending completion of the task
155 jozart 1.9 * @throws RejectedExecutionException if task cannot be scheduled
156 tim 1.1 * for execution
157     */
158 dl 1.5 public static <T> Future<T> execute(Executor executor, Runnable task, T value) {
159 dl 1.10 FutureTask<T> ftask = new FutureTask<T>(task, value);
160 tim 1.1 executor.execute(ftask);
161     return ftask;
162     }
163    
164     /**
165     * Executes a value-returning task and returns a Future
166     * representing the pending results of the task.
167     *
168     * @param executor the Executor to which the task will be submitted
169     * @param task the task to submit
170     * @return a Future representing pending completion of the task
171 jozart 1.9 * @throws RejectedExecutionException if task cannot be scheduled
172     * for execution
173 tim 1.1 */
174 dl 1.4 public static <T> FutureTask<T> execute(Executor executor, Callable<T> task) {
175 dl 1.10 FutureTask<T> ftask = new FutureTask<T>(task);
176 tim 1.1 executor.execute(ftask);
177     return ftask;
178     }
179    
180     /**
181     * Executes a Runnable task and blocks until it completes normally
182     * or throws an exception.
183     *
184     * @param executor the Executor to which the task will be submitted
185     * @param task the task to submit
186 jozart 1.9 * @throws RejectedExecutionException if task cannot be scheduled
187     * for execution
188 tim 1.1 */
189     public static void invoke(Executor executor, Runnable task)
190     throws ExecutionException, InterruptedException {
191 dl 1.4 FutureTask<Boolean> ftask = new FutureTask(task, Boolean.TRUE);
192 tim 1.1 executor.execute(ftask);
193     ftask.get();
194     }
195    
196     /**
197     * Executes a value-returning task and blocks until it returns a
198     * value or throws an exception.
199     *
200     * @param executor the Executor to which the task will be submitted
201     * @param task the task to submit
202     * @return a Future representing pending completion of the task
203 jozart 1.9 * @throws RejectedExecutionException if task cannot be scheduled
204     * for execution
205 tim 1.1 */
206     public static <T> T invoke(Executor executor, Callable<T> task)
207     throws ExecutionException, InterruptedException {
208     FutureTask<T> ftask = new FutureTask<T>(task);
209     executor.execute(ftask);
210     return ftask.get();
211 tim 1.6 }
212    
213 tim 1.1 }