Searched refs:initialDelay (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DScheduledExecutorService.java104 * {@code initialDelay}, then {@code initialDelay + period}, then
105 * {@code initialDelay + 2 * period}, and so on.
126 * @param initialDelay the time to delay first execution
128 * @param unit the time unit of the initialDelay and period parameters
140 long initialDelay,
165 * @param initialDelay the time to delay first execution
168 * @param unit the time unit of the initialDelay and delay parameters
180 long initialDelay,
139 scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) argument
179 scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) argument
H A DExecutors.java657 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { argument
658 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
660 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { argument
661 return e.scheduleWithFixedDelay(command, initialDelay, delay, unit);
H A DScheduledThreadPoolExecutor.java560 long initialDelay,
570 triggerTime(initialDelay, unit),
585 long initialDelay,
595 triggerTime(initialDelay, unit),
559 scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) argument
584 scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) argument

Completed in 7 milliseconds