public class SharedScheduledExecutorService
extends java.lang.Object
implements java.util.concurrent.ScheduledExecutorService
| Modifier and Type | Method and Description | 
|---|---|
| boolean | awaitTermination(long timeout,
                java.util.concurrent.TimeUnit unit) | 
| void | execute(java.lang.Runnable command) | 
| <T> java.util.List<java.util.concurrent.Future<T>> | invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks) | 
| <T> java.util.List<java.util.concurrent.Future<T>> | invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks,
         long timeout,
         java.util.concurrent.TimeUnit unit) | 
| <T> T | invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks) | 
| <T> T | invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks,
         long timeout,
         java.util.concurrent.TimeUnit unit) | 
| boolean | isShutdown() | 
| boolean | isTerminated() | 
| <V> java.util.concurrent.ScheduledFuture<V> | schedule(java.util.concurrent.Callable<V> callable,
        long delay,
        java.util.concurrent.TimeUnit unit) | 
| java.util.concurrent.ScheduledFuture<?> | schedule(java.lang.Runnable command,
        long delay,
        java.util.concurrent.TimeUnit unit) | 
| java.util.concurrent.ScheduledFuture<?> | schedule(java.lang.Runnable command,
        long delay,
        java.util.concurrent.TimeUnit unit,
        boolean repeatFlag)Creates and executes a one-shot action that becomes enabled
 after the given delay. | 
| java.util.concurrent.ScheduledFuture<?> | scheduleAtFixedRate(java.lang.Runnable command,
                   long initialDelay,
                   long period,
                   java.util.concurrent.TimeUnit unit) | 
| java.util.concurrent.ScheduledFuture<?> | scheduleAtFixedRate(java.lang.Runnable command,
                   long initialDelay,
                   long period,
                   java.util.concurrent.TimeUnit unit,
                   boolean repeatFlag)Creates and executes a periodic action that becomes enabled first
 after the given initial delay, and subsequently with the given
 period; that is executions will commence after
  initialDelaytheninitialDelay+period, theninitialDelay + 2 * period, and so on. | 
| java.util.concurrent.ScheduledFuture<?> | scheduleWithFixedDelay(java.lang.Runnable command,
                      long initialDelay,
                      long delay,
                      java.util.concurrent.TimeUnit unit) | 
| java.util.concurrent.ScheduledFuture<?> | scheduleWithFixedDelay(java.lang.Runnable command,
                      long initialDelay,
                      long delay,
                      java.util.concurrent.TimeUnit unit,
                      boolean repeatFlag)Creates and executes a periodic action that becomes enabled first
 after the given initial delay, and subsequently with the
 given delay between the termination of one execution and the
 commencement of the next. | 
| void | shutdown() | 
| java.util.List<java.lang.Runnable> | shutdownNow() | 
| <T> java.util.concurrent.Future<T> | submit(java.util.concurrent.Callable<T> task) | 
| java.util.concurrent.Future<?> | submit(java.lang.Runnable task) | 
| <T> java.util.concurrent.Future<T> | submit(java.lang.Runnable task,
      T result) | 
public java.util.concurrent.ScheduledFuture<?> schedule(java.lang.Runnable command,
                                                        long delay,
                                                        java.util.concurrent.TimeUnit unit,
                                                        boolean repeatFlag)
command - the task to executedelay - the time from now to delay executionunit - the time unit of the delay parameterrepeatFlag - the flag to denote whether to restart a failed taskget() method will return
         null upon completionpublic java.util.concurrent.ScheduledFuture<?> schedule(java.lang.Runnable command,
                                                        long delay,
                                                        java.util.concurrent.TimeUnit unit)
schedule in interface java.util.concurrent.ScheduledExecutorServicepublic <V> java.util.concurrent.ScheduledFuture<V> schedule(java.util.concurrent.Callable<V> callable,
                                                            long delay,
                                                            java.util.concurrent.TimeUnit unit)
schedule in interface java.util.concurrent.ScheduledExecutorServicepublic java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate(java.lang.Runnable command,
                                                                   long initialDelay,
                                                                   long period,
                                                                   java.util.concurrent.TimeUnit unit,
                                                                   boolean repeatFlag)
initialDelay then initialDelay+period, then
 initialDelay + 2 * period, and so on.
 Depends on the repeat flag that the user set, the failed tasks can be
 either restarted or terminated. If the repeat flag is set to to true,
 ant execution of the task encounters an exception, subsequent executions
 are permitted, otherwise, subsequent executions are suppressed.
 If any execution of this task takes longer than its period, then
 subsequent executions may start late, but will not concurrently execute.command - the task to executeinitialDelay - the time to delay first executionperiod - the period between successive executionsunit - the time unit of the initialDelay and period parametersrepeatFlag - the flag to denote whether to restart a failed taskget() method will throw an
         exception upon cancellationpublic java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate(java.lang.Runnable command,
                                                                   long initialDelay,
                                                                   long period,
                                                                   java.util.concurrent.TimeUnit unit)
scheduleAtFixedRate in interface java.util.concurrent.ScheduledExecutorServicepublic java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay(java.lang.Runnable command,
                                                                      long initialDelay,
                                                                      long delay,
                                                                      java.util.concurrent.TimeUnit unit,
                                                                      boolean repeatFlag)
command - the task to executeinitialDelay - the time to delay first executiondelay - the delay between the termination of one
 execution and the commencement of the nextunit - the time unit of the initialDelay and delay parametersrepeatFlag - the flag to denote whether to restart a failed taskget() method will throw an
         exception upon cancellationpublic java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay(java.lang.Runnable command,
                                                                      long initialDelay,
                                                                      long delay,
                                                                      java.util.concurrent.TimeUnit unit)
scheduleWithFixedDelay in interface java.util.concurrent.ScheduledExecutorServicepublic void shutdown()
shutdown in interface java.util.concurrent.ExecutorServicepublic java.util.List<java.lang.Runnable> shutdownNow()
shutdownNow in interface java.util.concurrent.ExecutorServicepublic boolean isShutdown()
isShutdown in interface java.util.concurrent.ExecutorServicepublic boolean isTerminated()
isTerminated in interface java.util.concurrent.ExecutorServicepublic boolean awaitTermination(long timeout,
                                java.util.concurrent.TimeUnit unit)
                         throws java.lang.InterruptedException
awaitTermination in interface java.util.concurrent.ExecutorServicejava.lang.InterruptedExceptionpublic <T> java.util.concurrent.Future<T> submit(java.util.concurrent.Callable<T> task)
submit in interface java.util.concurrent.ExecutorServicepublic <T> java.util.concurrent.Future<T> submit(java.lang.Runnable task,
                                                 T result)
submit in interface java.util.concurrent.ExecutorServicepublic java.util.concurrent.Future<?> submit(java.lang.Runnable task)
submit in interface java.util.concurrent.ExecutorServicepublic <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks)
                                                             throws java.lang.InterruptedException
invokeAll in interface java.util.concurrent.ExecutorServicejava.lang.InterruptedExceptionpublic <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks,
                                                                    long timeout,
                                                                    java.util.concurrent.TimeUnit unit)
                                                             throws java.lang.InterruptedException
invokeAll in interface java.util.concurrent.ExecutorServicejava.lang.InterruptedExceptionpublic <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks)
                throws java.lang.InterruptedException,
                       java.util.concurrent.ExecutionException
invokeAny in interface java.util.concurrent.ExecutorServicejava.lang.InterruptedExceptionjava.util.concurrent.ExecutionExceptionpublic <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks,
                       long timeout,
                       java.util.concurrent.TimeUnit unit)
                throws java.lang.InterruptedException,
                       java.util.concurrent.ExecutionException,
                       java.util.concurrent.TimeoutException
invokeAny in interface java.util.concurrent.ExecutorServicejava.lang.InterruptedExceptionjava.util.concurrent.ExecutionExceptionjava.util.concurrent.TimeoutExceptionpublic void execute(java.lang.Runnable command)
execute in interface java.util.concurrent.Executor