Searched refs:thenRunAsync (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletionStage.java | 276 public CompletionStage<Void> thenRunAsync(Runnable action); in thenRunAsync() method 290 public CompletionStage<Void> thenRunAsync(Runnable action, in thenRunAsync() method
|
D | CompletableFuture.java | 2174 public CompletableFuture<Void> thenRunAsync(Runnable action) { in thenRunAsync() method in CompletableFuture 2178 public CompletableFuture<Void> thenRunAsync(Runnable action, in thenRunAsync() method in CompletableFuture
|
/libcore/ojluni/annotations/mmodule/java/util/concurrent/ |
D | CompletableFuture.annotated.java | 84 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/luni/src/test/java/libcore/java/util/concurrent/ |
D | CompletionStageTest.java | 130 public CompletionStage<Void> thenRunAsync(Runnable action) { in thenRunAsync() method in CompletionStageTest.BaseStage 134 public CompletionStage<Void> thenRunAsync(Runnable action, in thenRunAsync() method in CompletionStageTest.BaseStage
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | CompletableFutureTest.java | 735 return f.thenRunAsync(a); 819 return f.thenRunAsync(a, new ThreadExecutor()); 3495 () -> f.thenRunAsync(null), in testNPE() 3496 () -> f.thenRunAsync(() -> {} , null), in testNPE() 3497 () -> f.thenRunAsync(null, exec), in testNPE() 3600 fs.add(src.thenRunAsync(() -> {}, e)); in testRejectingExecutor() 3681 fs.add(incomplete.thenRunAsync(() -> {}, e)); in testRejectingExecutorNeverInvoked() 4705 public CompletionStage<Void> thenRunAsync in thenRunAsync() method in DelegatedCompletionStage 4707 return cf.thenRunAsync(action); } in thenRunAsync() 4708 public CompletionStage<Void> thenRunAsync in thenRunAsync() method in DelegatedCompletionStage [all …]
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 667 return f.thenRunAsync(a); 740 return f.thenRunAsync(a, new ThreadExecutor()); 3237 () -> f.thenRunAsync(null), in testNPE() 3238 () -> f.thenRunAsync(() -> {} , null), in testNPE() 3239 () -> f.thenRunAsync(null, exec), in testNPE()
|
/libcore/api/ |
D | current.txt | 15459 method public java.util.concurrent.CompletableFuture<java.lang.Void> thenRunAsync(Runnable); 15460 …method public java.util.concurrent.CompletableFuture<java.lang.Void> thenRunAsync(Runnable, java.u… 15523 method public java.util.concurrent.CompletionStage<java.lang.Void> thenRunAsync(Runnable); 15524 …method public java.util.concurrent.CompletionStage<java.lang.Void> thenRunAsync(Runnable, java.uti…
|