/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ScheduledExecutorService.java | 106 public ScheduledFuture<?> schedule(Runnable command, in schedule() 122 public <V> ScheduledFuture<V> schedule(Callable<V> callable, in schedule() 164 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() 204 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
|
D | ScheduledFuture.java | 47 public interface ScheduledFuture<V> extends Delayed, Future<V> { interface
|
D | RunnableScheduledFuture.java | 48 public interface RunnableScheduledFuture<V> extends RunnableFuture<V>, ScheduledFuture<V> {
|
D | Executors.java | 769 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { 772 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { 775 …public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, Ti… 778 …public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, …
|
D | ScheduledThreadPoolExecutor.java | 560 public ScheduledFuture<?> schedule(Runnable command, in schedule() 577 public <V> ScheduledFuture<V> schedule(Callable<V> callable, in schedule() 623 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() 671 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
|
D | CompletableFuture.java | 2809 static ScheduledFuture<?> delay(Runnable command, long delay, in delay()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ScheduledExecutorSubclassTest.java | 28 import java.util.concurrent.ScheduledFuture; 173 ScheduledFuture f = in testSchedule4() 195 ScheduledFuture f = in testSchedule5() 223 final ScheduledFuture periodicTask = in testFixedRateSequence() 269 final ScheduledFuture periodicTask = in testFixedDelaySequence() 639 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 662 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 690 final ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 692 for (ScheduledFuture task : tasks) in testPurge() 758 List<ScheduledFuture> tasks = new ArrayList<>(); in testShutdownNow_delayedTasks() [all …]
|
D | ScheduledExecutorTest.java | 27 import java.util.concurrent.ScheduledFuture; 117 ScheduledFuture f = in testSchedule4() 139 ScheduledFuture f = in testSchedule5() 167 final ScheduledFuture periodicTask = in testFixedRateSequence() 213 final ScheduledFuture periodicTask = in testFixedDelaySequence() 587 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 610 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 638 final ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 640 for (ScheduledFuture task : tasks) in testPurge() 707 List<ScheduledFuture> tasks = new ArrayList<>(); in testShutdownNow_delayedTasks() [all …]
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | ScheduledExecutorSubclassTest.java | 55 import java.util.concurrent.ScheduledFuture; 197 ScheduledFuture f = in testSchedule4() 219 ScheduledFuture f = in testSchedule5() 247 final ScheduledFuture periodicTask = in testFixedRateSequence() 293 final ScheduledFuture periodicTask = in testFixedDelaySequence() 663 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 686 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 714 final ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 716 for (ScheduledFuture task : tasks) in testPurge() 782 List<ScheduledFuture> tasks = new ArrayList<>(); in testShutdownNow_delayedTasks() [all …]
|
D | ScheduledExecutorTest.java | 54 import java.util.concurrent.ScheduledFuture; 141 ScheduledFuture f = in testSchedule4() 163 ScheduledFuture f = in testSchedule5() 191 final ScheduledFuture periodicTask = in testFixedRateSequence() 237 final ScheduledFuture periodicTask = in testFixedDelaySequence() 610 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 633 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 661 final ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 663 for (ScheduledFuture task : tasks) in testPurge() 730 List<ScheduledFuture> tasks = new ArrayList<>(); in testShutdownNow_delayedTasks() [all …]
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | Executors.java | 276 public java.util.concurrent.ScheduledFuture<?> schedule( in schedule() 281 public <V> java.util.concurrent.ScheduledFuture<V> schedule( in schedule() 288 public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate( in scheduleAtFixedRate() 296 public java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay( in scheduleWithFixedDelay()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | PollingWatchService.java | 235 private ScheduledFuture<?> poller;
|
/libcore/api/ |
D | current.txt | 16258 …dFuture<V> extends java.util.concurrent.RunnableFuture<V> java.util.concurrent.ScheduledFuture<V> { 16263 …method public java.util.concurrent.ScheduledFuture<?> schedule(Runnable, long, java.util.concurren… 16264 …method public <V> java.util.concurrent.ScheduledFuture<V> schedule(java.util.concurrent.Callable<V… 16265 …method public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate(Runnable, long, long, ja… 16266 …method public java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay(Runnable, long, long,… 16269 …public interface ScheduledFuture<V> extends java.util.concurrent.Delayed java.util.concurrent.Futu… 16282 …method public java.util.concurrent.ScheduledFuture<?> schedule(Runnable, long, java.util.concurren… 16283 …method public <V> java.util.concurrent.ScheduledFuture<V> schedule(java.util.concurrent.Callable<V… 16284 …method public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate(Runnable, long, long, ja… 16285 …method public java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay(Runnable, long, long,…
|
/libcore/ |
D | openjdk_java_files.bp | 1020 "ojluni/src/main/java/java/util/concurrent/ScheduledFuture.java",
|
D | EXPECTED_UPSTREAM | 1071 …a/java/util/concurrent/ScheduledFuture.java,jdk17u/jdk-17.0.6-ga,src/java.base/share/classes/java/…
|