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.46 by dl, Fri Apr 29 17:00:36 2022 UTC vs.
Revision 1.47 by jsr166, Fri Nov 25 16:39:48 2022 UTC

# Line 136 | Line 136 | public interface Future<V> {
136      /**
137       * Returns the computed result, without waiting.
138       *
139 <     * <p> This method is for cases where the caller knows that the task has
139 >     * <p>This method is for cases where the caller knows that the task has
140       * already completed successfully, for example when filtering a stream
141       * of Future objects for the successful tasks and using a mapping
142       * operation to obtain a stream of results.
# Line 180 | Line 180 | public interface Future<V> {
180      /**
181       * Returns the exception thrown by the task, without waiting.
182       *
183 <     * <p> This method is for cases where the caller knows that the task
183 >     * <p>This method is for cases where the caller knows that the task
184       * has already completed with an exception.
185       *
186       * @implSpec

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines