Searched refs:thenAcceptBothAsync (Results 1 - 3 of 3) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
H A D | CompletionStage.java | 387 public <U> CompletionStage<Void> thenAcceptBothAsync method in interface:CompletionStage 407 public <U> CompletionStage<Void> thenAcceptBothAsync method in interface:CompletionStage
|
H A D | CompletableFuture.java | 2072 public <U> CompletableFuture<Void> thenAcceptBothAsync( method in class:CompletableFuture 2078 public <U> CompletableFuture<Void> thenAcceptBothAsync( method in class:CompletableFuture
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
H A D | CompletableFutureTest.java | 692 return f.thenAcceptBothAsync(g, a); 765 return f.thenAcceptBothAsync(g, a, new ThreadExecutor()); 3242 () -> f.thenAcceptBothAsync(g, null), 3243 () -> f.thenAcceptBothAsync(g, null, exec), 3245 () -> f.thenAcceptBothAsync(nullFuture, (x, y) -> {}), 3246 () -> f.thenAcceptBothAsync(nullFuture, (x, y) -> {}, exec), 3247 () -> f.thenAcceptBothAsync(g, (x, y) -> {}, null),
|
Completed in 89 milliseconds