ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Future.java
Revision: 1.5
Committed: Tue Aug 5 19:04:37 2003 UTC (20 years, 10 months ago) by dl
Branch: MAIN
Changes since 1.4: +13 -14 lines
Log Message:
Change example

File Contents

# User Rev Content
1 tim 1.1 /*
2     * @(#)Future.java
3     */
4    
5     package java.util.concurrent;
6    
7     /**
8     * A <tt>Future</tt> represents the result of an asynchronous computation.
9     * Methods are provided to check if the computation is complete,
10     * to wait for its completion, and to retrieve the result of the
11     * computation. The result can only be retrieved when the computation
12     * has completed. The <tt>get</tt> method will block until the computation
13     * has completed. Once the computation has completed, the result cannot
14     * be changed, nor can the computation be restarted or cancelled.
15     *
16     * <p>
17 dl 1.5 * <b>Sample Usage</b> (Note that the following classes are all
18     * made-up.) <p>
19 tim 1.1 * <pre>
20 dl 1.5 * class ArchiveSearcher { String search(String target); }
21 tim 1.1 * class App {
22     * Executor executor = ...
23 dl 1.5 * ArchiveSearcher searcher = ...
24     * void showSearch(final String target) throws InterruptedException {
25     * Future<String> future =
26     * new FutureTask<String>(new Callable<String>() {
27     * public String call() {
28     * return searcher.search(target);
29 tim 1.1 * }});
30 dl 1.5 * executor.execute(future);
31     * displayOtherThings(); // do other things while searching
32 tim 1.1 * try {
33 dl 1.5 * displayText(future.get()); // use future
34 tim 1.1 * }
35     * catch (ExecutionException ex) { cleanup(); return; }
36     * }
37     * }
38     * </pre>
39     *
40     * @since 1.5
41     * @see FutureTask
42     * @see Executor
43     *
44     * @spec JSR-166
45 dl 1.5 * @revised $Date: 2003/06/24 14:34:48 $
46 dl 1.3 * @editor $Author: dl $
47 dl 1.4 * @author Doug Lea
48 tim 1.1 */
49     public interface Future<V> {
50    
51     /**
52     * Returns <tt>true</tt> if the underlying task has completed.
53     *
54     * @fixme relation to isDone in Cancellable?
55     *
56     * @return <tt>true</tt> if underlying task has completed
57     */
58     boolean isDone();
59    
60     /**
61     * Waits if necessary for computation to complete, and then
62     * retrieves its result.
63     *
64     * @return computed result
65     * @throws CancellationException here???
66 dl 1.4 * @throws ExecutionException if underlying computation threw an
67     * exception
68     * @throws InterruptedException if current thread was interrupted
69     * while waiting
70 tim 1.1 */
71     V get() throws InterruptedException, ExecutionException;
72    
73     /**
74     * Waits if necessary for at most the given time for the computation
75     * to complete, and then retrieves its result.
76     *
77     * @param timeout the maximum time to wait
78     * @param granularity the time unit of the timeout argument
79     * @return computed result
80 dl 1.4 * @throws ExecutionException if underlying computation threw an
81     * exception
82     * @throws InterruptedException if current thread was interrupted
83     * while waiting
84 tim 1.1 * @throws TimeoutException if the wait timed out
85     */
86     V get(long timeout, TimeUnit granularity)
87     throws InterruptedException, ExecutionException, TimeoutException;
88     }
89    
90    
91