KickJava   Java API By Example, From Geeks To Geeks.

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

java.util.concurrent
Class ScheduledThreadPoolExecutor

java.lang.Object
  extended by java.util.concurrent.AbstractExecutorService
      extended by java.util.concurrent.ThreadPoolExecutor
          extended by java.util.concurrent.ScheduledThreadPoolExecutor
All Implemented Interfaces:
Executor, ExecutorService, ScheduledExecutorService
See Also:
Timer

public void execute(Runnable command)
See Also:
NullPointerException, RejectedExecutionException, ThreadPoolExecutor, Executor, ScheduledFuture
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean getContinueExistingPeriodicTasksAfterShutdownPolicy()
See Also:
setContinueExistingPeriodicTasksAfterShutdownPolicy(boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean getExecuteExistingDelayedTasksAfterShutdownPolicy()
See Also:
setExecuteExistingDelayedTasksAfterShutdownPolicy(boolean)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BlockingQueue<Runnable> getQueue()
See Also:
ThreadPoolExecutor, ScheduledFuture
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean remove(Runnable task)
See Also:
ThreadPoolExecutor, ThreadPoolExecutor.purge()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


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


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


public ScheduledThreadPoolExecutor(int corePoolSize)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ScheduledThreadPoolExecutor(int corePoolSize,
                                   RejectedExecutionHandler handler)
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ScheduledThreadPoolExecutor(int corePoolSize,
                                   ThreadFactory threadFactory)
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ScheduledThreadPoolExecutor(int corePoolSize,
                                   ThreadFactory threadFactory,
                                   RejectedExecutionHandler handler)
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


public void setContinueExistingPeriodicTasksAfterShutdownPolicy(boolean value)
See Also:
getExecuteExistingDelayedTasksAfterShutdownPolicy()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setExecuteExistingDelayedTasksAfterShutdownPolicy(boolean value)
See Also:
getExecuteExistingDelayedTasksAfterShutdownPolicy()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void shutdown()
See Also:
ThreadPoolExecutor, ExecutorService
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public List<Runnable> shutdownNow()
See Also:
ScheduledFuture, ThreadPoolExecutor, ExecutorService, Thread.interrupt()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Future<?> submit(Runnable task)
See Also:
AbstractExecutorService, ExecutorService
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public <T> Future<T> submit(Runnable task,
                            T result)
See Also:
AbstractExecutorService, ExecutorService
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public <T> Future<T> submit(Callable<T> task)
See Also:
AbstractExecutorService, ExecutorService, PrivilegedAction, Executors
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags