Home
last modified time | relevance | path

Searched refs:thenRunAsync (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java276 public CompletionStage<Void> thenRunAsync(Runnable action); in thenRunAsync() method
290 public CompletionStage<Void> thenRunAsync(Runnable action, in thenRunAsync() method
DCompletableFuture.java2041 public CompletableFuture<Void> thenRunAsync(Runnable action) { in thenRunAsync() method in CompletableFuture
2045 public CompletableFuture<Void> thenRunAsync(Runnable action, in thenRunAsync() method in CompletableFuture
/libcore/ojluni/annotations/mmodule/java/util/concurrent/
DCompletableFuture.annotated.java84 public java.util.concurrent.CompletableFuture<java.lang.Void> thenRunAsync(java.lang.Runnable actio… in thenRunAsync() method in CompletableFuture
86 public java.util.concurrent.CompletableFuture<java.lang.Void> thenRunAsync(java.lang.Runnable actio… in thenRunAsync() method in CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java659 return f.thenRunAsync(a);
732 return f.thenRunAsync(a, new ThreadExecutor());
3229 () -> f.thenRunAsync(null), in testNPE()
3230 () -> f.thenRunAsync(() -> {} , null), in testNPE()
3231 () -> f.thenRunAsync(null, exec), in testNPE()