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
/libcore/ojluni/annotations/mmodule/java/util/concurrent/
DCompletableFuture.annotated.java78 public java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptAsync(java.util.function.Co… in thenAcceptAsync() method in CompletableFuture
80 public java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptAsync(java.util.function.Co… 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()