Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java328 public <U,V> CompletionStage<V> thenCombineAsync in thenCombineAsync() method
349 public <U,V> CompletionStage<V> thenCombineAsync in thenCombineAsync() method
/libcore/ojluni/annotations/mmodule/java/util/concurrent/
DCompletableFuture.annotated.java90 public <U, V> java.util.concurrent.CompletableFuture<V> thenCombineAsync(java.util.concurrent.Compl… in thenCombineAsync() method in CompletableFuture
92 public <U, V> java.util.concurrent.CompletableFuture<V> thenCombineAsync(java.util.concurrent.Compl… in thenCombineAsync() method in CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java698 return f.thenCombineAsync(g, a);
771 return f.thenCombineAsync(g, a, new ThreadExecutor());
3234 () -> f.thenCombineAsync(g, null), in testNPE()
3235 () -> f.thenCombineAsync(g, null, exec), in testNPE()
3237 () -> f.thenCombineAsync(nullFuture, (x, y) -> x), in testNPE()
3238 () -> f.thenCombineAsync(nullFuture, (x, y) -> x, exec), in testNPE()
3239 () -> f.thenCombineAsync(g, (x, y) -> x, null), in testNPE()