KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > concurrent > ScheduledExecutorService

java.util.concurrent
Interface ScheduledExecutorService

All Superinterfaces:
Executor, ExecutorService
All Known Implementing Classes:
ScheduledThreadPoolExecutor
See Also:
Executors, Date, Executor.execute(java.lang.Runnable)

ScheduledFuture<?> schedule(Runnable command,
                            long delay,
                            TimeUnit unit)
See Also:
NullPointerException, RejectedExecutionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


<V> ScheduledFuture<V> schedule(Callable<V> callable,
                                long delay,
                                TimeUnit unit)
See Also:
NullPointerException, RejectedExecutionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


ScheduledFuture<?> scheduleAtFixedRate(Runnable command,
                                       long initialDelay,
                                       long period,
                                       TimeUnit unit)
See Also:
IllegalArgumentException, NullPointerException, RejectedExecutionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
                                          long initialDelay,
                                          long delay,
                                          TimeUnit unit)
See Also:
IllegalArgumentException, NullPointerException, RejectedExecutionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags