Searched refs:thenAcceptBothAsync (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DCompletionStage.java358 public <U> CompletionStage<Void> thenAcceptBothAsync method in interface:CompletionStage
378 public <U> CompletionStage<Void> thenAcceptBothAsync method in interface:CompletionStage
H A DCompletableFuture.java2043 public <U> CompletableFuture<Void> thenAcceptBothAsync( method in class:CompletableFuture
2049 public <U> CompletableFuture<Void> thenAcceptBothAsync( method in class:CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCompletableFutureTest.java692 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 18 milliseconds