Searched defs:thenAccept (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCompletionStage.java60 * .thenAccept(x -> System.out.print(x))
219 public CompletionStage<Void> thenAccept(Consumer<? super T> action); method in interface:CompletionStage
H A DCompletableFuture.java2022 public CompletableFuture<Void> thenAccept(Consumer<? super T> action) { method in class:CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCompletableFutureTest.java587 public <T> CompletableFuture<Void> thenAccept
589 return f.thenAccept(a);
661 public <T> CompletableFuture<Void> thenAccept
734 public <T> CompletableFuture<Void> thenAccept
798 public abstract <T> CompletableFuture<Void> thenAccept method in class:CompletableFutureTest.ExecutionMode
1498 * thenAccept result completes normally after normal completion of source
1508 final CompletableFuture<Void> h0 = m.thenAccept(f, rs[0]);
1513 final CompletableFuture<Void> h2 = m.thenAccept(f, rs[2]);
1525 * thenAccept result completes exceptionally after exceptional
1536 final CompletableFuture<Void> h0 = m.thenAccept(
[all...]

Completed in 7125 milliseconds