Searched refs:thenCompose (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletionStage.java | 647 public <U> CompletionStage<U> thenCompose in thenCompose() method 876 .thenCompose(Function.identity()); in exceptionallyAsync() 902 .thenCompose(Function.identity()); in exceptionallyAsync() 924 .thenCompose(Function.identity()); in exceptionallyCompose() 947 .thenCompose(Function.identity())) in exceptionallyComposeAsync() 948 .thenCompose(Function.identity()); in exceptionallyComposeAsync() 973 .thenCompose(Function.identity())) in exceptionallyComposeAsync() 974 .thenCompose(Function.identity()); in exceptionallyComposeAsync()
|
D | CompletableFuture.java | 2283 public <U> CompletableFuture<U> thenCompose( in thenCompose() method in CompletableFuture
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 603 public <T,U> CompletableFuture<U> thenCompose 606 return f.thenCompose(a); 677 public <T,U> CompletableFuture<U> thenCompose 750 public <T,U> CompletableFuture<U> thenCompose 810 public abstract <T,U> CompletableFuture<U> thenCompose 2926 final CompletableFuture<Integer> g = m.thenCompose(f, r); in testThenCompose_normalCompletion() 2946 final CompletableFuture<Integer> g = m.thenCompose(f, r); in testThenCompose_exceptionalCompletion() 2966 final CompletableFuture<Integer> g = m.thenCompose(f, r); in testThenCompose_actionFailed() 2984 final CompletableFuture<Integer> g = m.thenCompose(f, r); in testThenCompose_sourceCancelled() 3011 h = m.thenCompose(f, (x -> g)); in testThenCompose_actionReturnsFailingFuture() [all …]
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | CompletableFutureTest.java | 663 public <T,U> CompletableFuture<U> thenCompose 666 return f.thenCompose(a); 745 public <T,U> CompletableFuture<U> thenCompose 829 public <T,U> CompletableFuture<U> thenCompose 899 public abstract <T,U> CompletableFuture<U> thenCompose 3054 final CompletableFuture<Item> g = m.thenCompose(f, r); in testThenCompose_normalCompletion() 3074 final CompletableFuture<Item> g = m.thenCompose(f, r); in testThenCompose_exceptionalCompletion() 3094 final CompletableFuture<Item> g = m.thenCompose(f, r); in testThenCompose_actionFailed() 3112 final CompletableFuture<Item> g = m.thenCompose(f, r); in testThenCompose_sourceCancelled() 3139 h = m.thenCompose(f, x -> g); in testThenCompose_actionReturnsFailingFuture() [all …]
|
/libcore/ojluni/annotations/mmodule/java/util/concurrent/ |
D | CompletableFuture.annotated.java | 124 public <U> java.util.concurrent.CompletableFuture<U> thenCompose(java.util.function.Function<? supe… in thenCompose() method in CompletableFuture
|
/libcore/luni/src/test/java/libcore/java/util/concurrent/ |
D | CompletionStageTest.java | 236 public <U> CompletionStage<U> thenCompose( in thenCompose() method in CompletionStageTest.BaseStage
|
/libcore/api/ |
D | current.txt | 15455 …method public <U> java.util.concurrent.CompletableFuture<U> thenCompose(java.util.function.Functio… 15519 …method public <U> java.util.concurrent.CompletionStage<U> thenCompose(java.util.function.Function<…
|