Searched refs:scheduleAtFixedRate (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/test/java/util/Timer/
H A DArgs.java46 void scheduleAtFixedRate(final Timer t, final TimerTask task, final Date d, final long period) { method in class:Args
47 t.scheduleAtFixedRate(task, d, period);
49 new F(){void f(){ t.scheduleAtFixedRate(task, d, period); }});
75 new F(){void f(){ t.scheduleAtFixedRate(x, -42, 42); }},
76 new F(){void f(){ t.scheduleAtFixedRate(x, new Date(-42), 42); }},
77 new F(){void f(){ t.scheduleAtFixedRate(x, Long.MAX_VALUE, 42); }},
78 new F(){void f(){ t.scheduleAtFixedRate(x, 42, 0); }},
79 new F(){void f(){ t.scheduleAtFixedRate(x, new Date(42), 0); }},
80 new F(){void f(){ t.scheduleAtFixedRate(x, 42, -42); }},
81 new F(){void f(){ t.scheduleAtFixedRate(
[all...]
H A DDelayOverflow.java49 timer.scheduleAtFixedRate(task, new Date(), Long.MAX_VALUE);
52 timer.scheduleAtFixedRate(task, 0L, Long.MAX_VALUE);
/openjdk7/jdk/test/java/util/concurrent/ScheduledThreadPoolExecutor/
H A DStress.java47 pool.scheduleAtFixedRate(incTask, 0, 10, TimeUnit.MILLISECONDS);
H A DDelayOverflow.java61 pool.scheduleAtFixedRate(r, 0, 1000, TimeUnit.MILLISECONDS);
81 pool.scheduleAtFixedRate(r, Long.MAX_VALUE, 1000, TimeUnit.MILLISECONDS);
H A DDecorateTask.java82 pool.scheduleAtFixedRate(countDownTask(latch1), 0L, 1L, TimeUnit.NANOSECONDS);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DScheduledExecutorService.java46 * execution. The <tt>scheduleAtFixedRate</tt> and
86 * scheduler.scheduleAtFixedRate(beeper, 10, 10, SECONDS);
155 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, method in interface:ScheduledExecutorService
H A DExecutors.java694 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { method in class:Executors.DelegatedScheduledExecutorService
695 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
H A DScheduledThreadPoolExecutor.java65 * {@code scheduleAtFixedRate} or
93 * {@code submit}, {@code schedule}, {@code scheduleAtFixedRate},
555 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, method in class:ScheduledThreadPoolExecutor
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DModifyCorePoolSize.java52 pool.scheduleAtFixedRate(nop, 100L * (i + 1),
H A DScheduledTickleService.java105 ticket = service.scheduleAtFixedRate(this, interval,
/openjdk7/jdk/src/share/classes/java/util/
H A DTimer.java323 public void scheduleAtFixedRate(TimerTask task, long delay, long period) { method in class:Timer
366 public void scheduleAtFixedRate(TimerTask task, Date firstTime, method in class:Timer
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DPollingWatchService.java292 .scheduleAtFixedRate(thunk, period, period, TimeUnit.SECONDS);

Completed in 142 milliseconds