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

/libcore/luni/src/main/java/java/util/concurrent/
H A DCompletionStage.java205 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action); method in interface:CompletionStage
220 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action, method in interface:CompletionStage
H A DCompletableFuture.java1997 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action) { method in class:CompletableFuture
2001 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action, method in class:CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCompletableFutureTest.java663 return f.thenAcceptAsync(a);
736 return f.thenAcceptAsync(a, new ThreadExecutor());
3224 () -> f.thenAcceptAsync(null),
3225 () -> f.thenAcceptAsync((x) -> {} , null),
3226 () -> f.thenAcceptAsync(null, exec),

Completed in 15 milliseconds