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

Comparing jsr166/src/main/java/util/concurrent/CompletableFuture.java (file contents):
Revision 1.166 by dl, Sun Sep 6 14:44:38 2015 UTC vs.
Revision 1.167 by dl, Mon Sep 7 12:57:37 2015 UTC

# Line 2730 | Line 2730 | public class CompletableFuture<T> implem
2730              throw new UnsupportedOperationException(); }
2731          public int getNumberOfDependents() {
2732              throw new UnsupportedOperationException(); }
2733 +        public CompletableFuture<T> completeAsync(Supplier<? extends T> supplier,
2734 +                                                  Executor executor) {
2735 +            throw new UnsupportedOperationException(); }
2736 +        public CompletableFuture<T> completeAsync(Supplier<? extends T> supplier) {
2737 +            throw new UnsupportedOperationException(); }
2738 +        public CompletableFuture<T> orTimeout(long timeout, TimeUnit unit) {
2739 +            throw new UnsupportedOperationException(); }
2740 +        public CompletableFuture<T> completeOnTimeout(T value, long timeout,
2741 +                                                      TimeUnit unit) {
2742 +            throw new UnsupportedOperationException(); }
2743      }
2744  
2745      // Unsafe mechanics

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines