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

/libcore/luni/src/main/java/java/util/concurrent/
H A DScheduledExecutorService.java103 * {@code initialDelay} then {@code initialDelay+period}, then
104 * {@code initialDelay + 2 * period}, and so on.
113 * @param initialDelay the time to delay first execution
115 * @param unit the time unit of the initialDelay and period parameters
125 long initialDelay,
139 * @param initialDelay the time to delay first execution
142 * @param unit the time unit of the initialDelay and delay parameters
152 long initialDelay,
124 scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) argument
151 scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) argument
H A DExecutors.java649 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { argument
650 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
652 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { argument
653 return e.scheduleWithFixedDelay(command, initialDelay, delay, unit);
H A DScheduledThreadPoolExecutor.java529 long initialDelay,
539 triggerTime(initialDelay, unit),
553 long initialDelay,
563 triggerTime(initialDelay, unit),
528 scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) argument
552 scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) argument

Completed in 3461 milliseconds