Home
last modified time | relevance | path

Searched refs:thenCompose (Results 1 – 3 of 3) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java595 public <T,U> CompletableFuture<U> thenCompose
598 return f.thenCompose(a);
669 public <T,U> CompletableFuture<U> thenCompose
742 public <T,U> CompletableFuture<U> thenCompose
802 public abstract <T,U> CompletableFuture<U> thenCompose
2918 final CompletableFuture<Integer> g = m.thenCompose(f, r); in testThenCompose_normalCompletion()
2938 final CompletableFuture<Integer> g = m.thenCompose(f, r); in testThenCompose_exceptionalCompletion()
2958 final CompletableFuture<Integer> g = m.thenCompose(f, r); in testThenCompose_actionFailed()
2976 final CompletableFuture<Integer> g = m.thenCompose(f, r); in testThenCompose_sourceCancelled()
3003 h = m.thenCompose(f, (x -> g)); in testThenCompose_actionReturnsFailingFuture()
[all …]
/libcore/luni/src/main/java/java/util/concurrent/
DCompletionStage.java618 public <U> CompletionStage<U> thenCompose in thenCompose() method
DCompletableFuture.java2119 public <U> CompletableFuture<U> thenCompose( in thenCompose() method in CompletableFuture