Home
last modified time | relevance | path

Searched refs:runAfterEitherAsync (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
DCompletionStage.java571 public CompletionStage<Void> runAfterEitherAsync in runAfterEitherAsync() method
589 public CompletionStage<Void> runAfterEitherAsync in runAfterEitherAsync() method
DCompletableFuture.java2108 public CompletableFuture<Void> runAfterEitherAsync(CompletionStage<?> other, in runAfterEitherAsync() method in CompletableFuture
2113 public CompletableFuture<Void> runAfterEitherAsync(CompletionStage<?> other, in runAfterEitherAsync() method in CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java704 return f.runAfterEitherAsync(g, a);
777 return f.runAfterEitherAsync(g, a, new ThreadExecutor());
3274 () -> f.runAfterEitherAsync(g, null), in testNPE()
3275 () -> f.runAfterEitherAsync(g, null, exec), in testNPE()
3277 () -> f.runAfterEitherAsync(nullFuture, () -> {}), in testNPE()
3278 () -> f.runAfterEitherAsync(nullFuture, () -> {}, exec), in testNPE()
3279 () -> f.runAfterEitherAsync(g, () -> {}, null), in testNPE()