Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java234 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action); in thenAcceptAsync() method
249 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync() method
DCompletableFuture.java2026 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action) { in thenAcceptAsync() method in CompletableFuture
2030 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync() method in CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java663 return f.thenAcceptAsync(a);
736 return f.thenAcceptAsync(a, new ThreadExecutor());
3224 () -> f.thenAcceptAsync(null), in testNPE()
3225 () -> f.thenAcceptAsync((x) -> {} , null), in testNPE()
3226 () -> f.thenAcceptAsync(null, exec), in testNPE()