Searched refs:applyToEitherAsync (Results 1 – 4 of 4) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletionStage.java | 492 public <U> CompletionStage<U> applyToEitherAsync in applyToEitherAsync() method 512 public <U> CompletionStage<U> applyToEitherAsync in applyToEitherAsync() method
|
D | CompletableFuture.java | 2107 public <U> CompletableFuture<U> applyToEitherAsync( in applyToEitherAsync() method in CompletableFuture 2112 public <U> CompletableFuture<U> applyToEitherAsync( in applyToEitherAsync() method in CompletableFuture
|
/libcore/ojluni/annotations/mmodule/java/util/concurrent/ |
D | CompletableFuture.annotated.java | 108 public <U> java.util.concurrent.CompletableFuture<U> applyToEitherAsync(java.util.concurrent.Comple… in applyToEitherAsync() method in CompletableFuture 110 public <U> java.util.concurrent.CompletableFuture<U> applyToEitherAsync(java.util.concurrent.Comple… in applyToEitherAsync() method in CompletableFuture
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 716 return f.applyToEitherAsync(g, a); 789 return f.applyToEitherAsync(g, a, new ThreadExecutor()); 3258 () -> f.applyToEitherAsync(g, null), in testNPE() 3259 () -> f.applyToEitherAsync(g, null, exec), in testNPE() 3261 () -> f.applyToEitherAsync(nullFuture, (x) -> x), in testNPE() 3262 () -> f.applyToEitherAsync(nullFuture, (x) -> x, exec), in testNPE() 3263 () -> f.applyToEitherAsync(g, (x) -> x, null), in testNPE()
|