ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Future.java
Revision: 1.9
Committed: Tue Aug 19 15:04:57 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.8: +2 -13 lines
Log Message:
Future extends Cancellable.
class SE.DelayedTask -> interface ScheduledCancellable
class SE.DelayedFutureTask -> interface ScheduledFuture
Add primitive SE test.
Related internals changes.

File Contents

# Content
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 * <b>Sample Usage</b> (Note that the following classes are all
18 * made-up.) <p>
19 * <pre>
20 * class ArchiveSearcher { String search(String target); }
21 * class App {
22 * Executor executor = ...
23 * ArchiveSearcher searcher = ...
24 * void showSearch(final String target) throws InterruptedException {
25 * Future&lt;String&gt; future =
26 * new FutureTask&lt;String&gt;(new Callable&lt;String&gt;() {
27 * public String call() {
28 * return searcher.search(target);
29 * }});
30 * executor.execute(future);
31 * displayOtherThings(); // do other things while searching
32 * try {
33 * displayText(future.get()); // use future
34 * } catch (ExecutionException ex) { cleanup(); return; }
35 * }
36 * }
37 * </pre>
38 *
39 * @since 1.5
40 * @see FutureTask
41 * @see Executor
42 *
43 * @spec JSR-166
44 * @revised $Date: 2003/08/08 20:05:07 $
45 * @editor $Author: tim $
46 * @author Doug Lea
47 */
48 public interface Future<V> extends Cancellable {
49
50 /**
51 * Waits if necessary for computation to complete, and then
52 * retrieves its result.
53 *
54 * @return computed result
55 * @throws CancellationException here???
56 * @throws ExecutionException if underlying computation threw an
57 * exception
58 * @throws InterruptedException if current thread was interrupted
59 * while waiting
60 */
61 V get() throws InterruptedException, ExecutionException;
62
63 /**
64 * Waits if necessary for at most the given time for the computation
65 * to complete, and then retrieves its result.
66 *
67 * @param timeout the maximum time to wait
68 * @param granularity the time unit of the timeout argument
69 * @return computed result
70 * @throws ExecutionException if underlying computation threw an
71 * exception
72 * @throws InterruptedException if current thread was interrupted
73 * while waiting
74 * @throws TimeoutException if the wait timed out
75 */
76 V get(long timeout, TimeUnit granularity)
77 throws InterruptedException, ExecutionException, TimeoutException;
78 }
79
80
81