Searched refs:thenAcceptAsync (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletionStage.java | 234 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action); in thenAcceptAsync() method 249 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync() method
|
D | CompletableFuture.java | 2161 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action) { in thenAcceptAsync() method in CompletableFuture 2165 public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync() method in CompletableFuture
|
/libcore/ojluni/annotations/mmodule/java/util/concurrent/ |
D | CompletableFuture.annotated.java | 78 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/luni/src/test/java/libcore/java/util/concurrent/ |
D | CompletionStageTest.java | 117 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action) { in thenAcceptAsync() method in CompletionStageTest.BaseStage 121 public CompletionStage<Void> thenAcceptAsync(Consumer<? super T> action, in thenAcceptAsync() method in CompletionStageTest.BaseStage
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | CompletableFutureTest.java | 739 return f.thenAcceptAsync(a); 823 return f.thenAcceptAsync(a, new ThreadExecutor()); 3490 () -> f.thenAcceptAsync(null), in testNPE() 3491 () -> f.thenAcceptAsync(x -> {} , null), in testNPE() 3492 () -> f.thenAcceptAsync(null, exec), in testNPE() 3601 fs.add(src.thenAcceptAsync(z -> {}, e)); in testRejectingExecutor() 3682 fs.add(incomplete.thenAcceptAsync(z -> {}, e)); in testRejectingExecutorNeverInvoked() 4715 public CompletionStage<Void> thenAcceptAsync in thenAcceptAsync() method in DelegatedCompletionStage 4717 return cf.thenAcceptAsync(action); } in thenAcceptAsync() 4718 public CompletionStage<Void> thenAcceptAsync in thenAcceptAsync() method in DelegatedCompletionStage [all …]
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 671 return f.thenAcceptAsync(a); 744 return f.thenAcceptAsync(a, new ThreadExecutor()); 3232 () -> f.thenAcceptAsync(null), in testNPE() 3233 () -> f.thenAcceptAsync((x) -> {} , null), in testNPE() 3234 () -> f.thenAcceptAsync(null, exec), in testNPE()
|
/libcore/api/ |
D | current.txt | 15444 …method public java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptAsync(java.util.fun… 15445 …method public java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptAsync(java.util.fun… 15508 …method public java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptAsync(java.util.funct… 15509 …method public java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptAsync(java.util.funct…
|