Home
last modified time | relevance | path

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

/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java626 public <T> CompletableFuture<Void> runAfterEither
630 return f.runAfterEither(g, a);
700 public <T> CompletableFuture<Void> runAfterEither
773 public <T> CompletableFuture<Void> runAfterEither
821 public abstract <T> CompletableFuture<Void> runAfterEither
1283 final CompletableFuture<Void> h2 = m.runAfterEither(f, f, rs[2]); in testThenRun_normalCompletion()
1290 final CompletableFuture<Void> h5 = m.runAfterEither(f, f, rs[5]); in testThenRun_normalCompletion()
1316 final CompletableFuture<Void> h2 = m.runAfterEither(f, f, rs[2]); in testThenRun_exceptionalCompletion()
1323 final CompletableFuture<Void> h5 = m.runAfterEither(f, f, rs[5]); in testThenRun_exceptionalCompletion()
1348 final CompletableFuture<Void> h2 = m.runAfterEither(f, f, rs[2]); in testThenRun_sourceCancelled()
[all …]
/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java584 public CompletionStage<Void> runAfterEither(CompletionStage<?> other, in runAfterEither() method
DCompletableFuture.java2132 public CompletableFuture<Void> runAfterEither(CompletionStage<?> other, in runAfterEither() method in CompletableFuture