ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CompletionService.java
Revision: 1.14
Committed: Tue Mar 15 19:47:03 2011 UTC (13 years, 2 months ago) by jsr166
Branch: MAIN
CVS Tags: release-1_7_0
Changes since 1.13: +1 -1 lines
Log Message:
Update Creative Commons license URL in legal notices

File Contents

# User Rev Content
1 dl 1.1 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3 dl 1.5 * Expert Group and released to the public domain, as explained at
4 jsr166 1.14 * http://creativecommons.org/publicdomain/zero/1.0/
5 dl 1.1 */
6    
7     package java.util.concurrent;
8    
9     /**
10     * A service that decouples the production of new asynchronous tasks
11 dl 1.3 * from the consumption of the results of completed tasks. Producers
12     * <tt>submit</tt> tasks for execution. Consumers <tt>take</tt>
13     * completed tasks and process their results in the order they
14     * complete. A <tt>CompletionService</tt> can for example be used to
15     * manage asynchronous IO, in which tasks that perform reads are
16     * submitted in one part of a program or system, and then acted upon
17     * in a different part of the program when the reads complete,
18     * possibly in a different order than they were requested.
19 brian 1.10 *
20 jsr166 1.12 * <p>Typically, a <tt>CompletionService</tt> relies on a separate
21     * {@link Executor} to actually execute the tasks, in which case the
22 dl 1.2 * <tt>CompletionService</tt> only manages an internal completion
23     * queue. The {@link ExecutorCompletionService} class provides an
24     * implementation of this approach.
25     *
26 jsr166 1.12 * <p>Memory consistency effects: Actions in a thread prior to
27     * submitting a task to a {@code CompletionService}
28     * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
29     * actions taken by that task, which in turn <i>happen-before</i>
30     * actions following a successful return from the corresponding {@code take()}.
31 brian 1.9 *
32 dl 1.1 */
33     public interface CompletionService<V> {
34     /**
35     * Submits a value-returning task for execution and returns a Future
36 jsr166 1.8 * representing the pending results of the task. Upon completion,
37 dl 1.1 * this task may be taken or polled.
38     *
39     * @param task the task to submit
40     * @return a Future representing pending completion of the task
41 jsr166 1.8 * @throws RejectedExecutionException if the task cannot be
42     * scheduled for execution
43     * @throws NullPointerException if the task is null
44 dl 1.1 */
45     Future<V> submit(Callable<V> task);
46    
47     /**
48 jsr166 1.7 * Submits a Runnable task for execution and returns a Future
49 jsr166 1.8 * representing that task. Upon completion, this task may be
50     * taken or polled.
51 dl 1.1 *
52     * @param task the task to submit
53     * @param result the result to return upon successful completion
54     * @return a Future representing pending completion of the task,
55 jsr166 1.8 * and whose <tt>get()</tt> method will return the given
56     * result value upon completion
57     * @throws RejectedExecutionException if the task cannot be
58     * scheduled for execution
59     * @throws NullPointerException if the task is null
60 dl 1.1 */
61     Future<V> submit(Runnable task, V result);
62    
63     /**
64     * Retrieves and removes the Future representing the next
65     * completed task, waiting if none are yet present.
66 jsr166 1.8 *
67 dl 1.1 * @return the Future representing the next completed task
68 jsr166 1.8 * @throws InterruptedException if interrupted while waiting
69 dl 1.1 */
70     Future<V> take() throws InterruptedException;
71    
72    
73     /**
74     * Retrieves and removes the Future representing the next
75     * completed task or <tt>null</tt> if none are present.
76     *
77     * @return the Future representing the next completed task, or
78 jsr166 1.8 * <tt>null</tt> if none are present
79 dl 1.1 */
80     Future<V> poll();
81    
82     /**
83     * Retrieves and removes the Future representing the next
84     * completed task, waiting if necessary up to the specified wait
85     * time if none are yet present.
86 jsr166 1.8 *
87 dl 1.1 * @param timeout how long to wait before giving up, in units of
88 jsr166 1.8 * <tt>unit</tt>
89 dl 1.1 * @param unit a <tt>TimeUnit</tt> determining how to interpret the
90 jsr166 1.8 * <tt>timeout</tt> parameter
91 dl 1.1 * @return the Future representing the next completed task or
92 jsr166 1.8 * <tt>null</tt> if the specified waiting time elapses
93     * before one is present
94     * @throws InterruptedException if interrupted while waiting
95 dl 1.1 */
96     Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException;
97     }