Searched refs:thenCombine (Results 1 – 3 of 3) sorted by relevance
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 620 public <T,U,V> CompletableFuture<V> thenCombine 624 return f.thenCombine(g, a); 694 public <T,U,V> CompletableFuture<V> thenCombine 767 public <T,U,V> CompletableFuture<V> thenCombine 817 public abstract <T,U,V> CompletableFuture<V> thenCombine 1619 final CompletableFuture<Integer> h0 = m.thenCombine(f, g, rs[0]); in testThenCombine_normalCompletion() 1620 final CompletableFuture<Integer> h1 = m.thenCombine(fst, fst, rs[1]); in testThenCombine_normalCompletion() 1622 final CompletableFuture<Integer> h2 = m.thenCombine(f, g, rs[2]); in testThenCombine_normalCompletion() 1623 final CompletableFuture<Integer> h3 = m.thenCombine(fst, fst, rs[3]); in testThenCombine_normalCompletion() 1631 final CompletableFuture<Integer> h4 = m.thenCombine(f, g, rs[4]); in testThenCombine_normalCompletion() [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletionStage.java | 308 public <U,V> CompletionStage<V> thenCombine in thenCombine() method
|
D | CompletableFuture.java | 2048 public <U,V> CompletableFuture<V> thenCombine( in thenCombine() method in CompletableFuture
|