Searched refs:ScheduledFuture (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ScheduledExecutorService.java | 81 public ScheduledFuture<?> schedule(Runnable command, in schedule() 96 public <V> ScheduledFuture<V> schedule(Callable<V> callable, in schedule() 124 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() 151 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
|
D | ScheduledFuture.java | 18 public interface ScheduledFuture<V> extends Delayed, Future<V> { interface
|
D | RunnableScheduledFuture.java | 19 public interface RunnableScheduledFuture<V> extends RunnableFuture<V>, ScheduledFuture<V> {
|
D | Executors.java | 643 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { 646 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { 649 …public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, Ti… 652 …public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, …
|
D | ScheduledThreadPoolExecutor.java | 495 public ScheduledFuture<?> schedule(Runnable command, in schedule() 511 public <V> ScheduledFuture<V> schedule(Callable<V> callable, in schedule() 528 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() 552 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ScheduledExecutorTest.java | 95 ScheduledFuture f = in testSchedule4() 119 ScheduledFuture f = in testSchedule5() 141 ScheduledFuture h = in testFixedRateSequence() 159 ScheduledFuture h = in testFixedDelaySequence() 528 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 552 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 586 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 605 for (ScheduledFuture task : tasks) in testPurge() 639 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testShutdown1() 645 for (ScheduledFuture task : tasks) { in testShutdown1() [all …]
|
D | ScheduledExecutorSubclassTest.java | 147 ScheduledFuture f = in testSchedule4() 171 ScheduledFuture f = in testSchedule5() 193 ScheduledFuture h = in testFixedRateSequence() 211 ScheduledFuture h = in testFixedDelaySequence() 577 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 601 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 635 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 654 for (ScheduledFuture task : tasks) in testPurge() 688 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testShutdown1() 694 for (ScheduledFuture task : tasks) { in testShutdown1() [all …]
|