ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166e/CompletableFuture.java
(Generate patch)

Comparing jsr166/src/jsr166e/CompletableFuture.java (file contents):
Revision 1.12 by jsr166, Wed Feb 6 08:43:48 2013 UTC vs.
Revision 1.14 by jsr166, Sat Feb 16 20:50:29 2013 UTC

# Line 1788 | Line 1788 | public class CompletableFuture<T> implem
1788       * @param executor the executor to use for asynchronous execution
1789       * @return the new CompletableFuture
1790       */
1791
1791      public <U,V> CompletableFuture<V> thenCombineAsync(CompletableFuture<? extends U> other,
1792                                                         BiFun<? super T,? super U,? extends V> fn,
1793                                                         Executor executor) {
# Line 2555 | Line 2554 | public class CompletableFuture<T> implem
2554       *
2555       * @param fn the function to use to compute the value of the
2556       * returned CompletableFuture
2558
2557       * @return the new CompletableFuture
2558       */
2559      public <U> CompletableFuture<U> handle(BiFun<? super T, Throwable, ? extends U> fn) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines