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

Comparing jsr166/src/main/java/util/concurrent/Future.java (file contents):
Revision 1.5 by dl, Tue Aug 5 19:04:37 2003 UTC vs.
Revision 1.6 by dl, Wed Aug 6 00:20:00 2003 UTC

# Line 51 | Line 51 | public interface Future<V> {
51      /**
52       * Returns <tt>true</tt> if the underlying task has completed.
53       *
54 <     * @fixme relation to isDone in Cancellable?
54 >     * Completion may be due to normal termination, an exception, or
55 >     * cancellation -- in all of these cases, this method will return
56 >     * <tt>true</tt>.
57       *
58 <     * @return <tt>true</tt> if underlying task has completed
58 >     * @return <tt>true</tt> if the underlying task has completed
59       */
60      boolean isDone();
61  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines