Searched refs:thenAcceptAsync (Results 1 – 3 of 3) sorted by relevance
234 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action); in thenAcceptAsync() method249 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync() method
2026 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action) { in thenAcceptAsync() method in CompletableFuture2030 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync() method in CompletableFuture
663 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()