Searched defs:scheduleWithFixedDelay (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DScheduledExecutorService.java47 * <tt>scheduleWithFixedDelay</tt> methods create and execute tasks
182 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, method in interface:ScheduledExecutorService
H A DExecutors.java697 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { method in class:Executors.DelegatedScheduledExecutorService
698 return e.scheduleWithFixedDelay(command, initialDelay, delay, unit);
H A DScheduledThreadPoolExecutor.java66 * {@code scheduleWithFixedDelay} do not overlap. While different
94 * and {@code scheduleWithFixedDelay}. By default, a
579 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, method in class:ScheduledThreadPoolExecutor

Completed in 239 milliseconds