Home
last modified time | relevance | path

Searched refs:ScheduledFuture (Results 1 – 15 of 15) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DScheduledExecutorService.java106 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()
DScheduledFuture.java47 public interface ScheduledFuture<V> extends Delayed, Future<V> { interface
DRunnableScheduledFuture.java48 public interface RunnableScheduledFuture<V> extends RunnableFuture<V>, ScheduledFuture<V> {
DExecutors.java769 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, …
DScheduledThreadPoolExecutor.java560 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()
DCompletableFuture.java2809 static ScheduledFuture<?> delay(Runnable command, long delay, in delay()
/libcore/jsr166-tests/src/test/java/jsr166/
DScheduledExecutorSubclassTest.java28 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 …]
DScheduledExecutorTest.java27 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/
DScheduledExecutorSubclassTest.java55 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 …]
DScheduledExecutorTest.java54 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/
DExecutors.java276 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/
DPollingWatchService.java235 private ScheduledFuture<?> poller;
/libcore/api/
Dcurrent.txt16258 …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/
Dopenjdk_java_files.bp1020 "ojluni/src/main/java/java/util/concurrent/ScheduledFuture.java",
DEXPECTED_UPSTREAM1071 …a/java/util/concurrent/ScheduledFuture.java,jdk17u/jdk-17.0.6-ga,src/java.base/share/classes/java/…