Searched defs:scheduleAtFixedRate (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DScheduledExecutorService.java44 * execution. The {@code scheduleAtFixedRate} and
84 * scheduler.scheduleAtFixedRate(beeper, 10, 10, SECONDS);
168 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, method in interface:ScheduledExecutorService
H A DExecutors.java690 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { method in class:Executors.DelegatedScheduledExecutorService
691 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
H A DScheduledThreadPoolExecutor.java76 * {@link #scheduleAtFixedRate scheduleAtFixedRate} or
104 * {@code submit}, {@code schedule}, {@code scheduleAtFixedRate},
588 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, method in class:ScheduledThreadPoolExecutor
/libcore/ojluni/src/main/java/java/util/
H A DTimer.java330 public void scheduleAtFixedRate(TimerTask task, long delay, long period) { method in class:Timer
373 public void scheduleAtFixedRate(TimerTask task, Date firstTime, method in class:Timer

Completed in 144 milliseconds