Class ShutdownableScheduledExecutorServiceImpl<E extends ScheduledExecutorService>
- java.lang.Object
-
- java.util.concurrent.AbstractExecutorService
-
- com.linkedin.alpini.base.registry.impl.ShutdownableExecutorServiceImpl<E>
-
- com.linkedin.alpini.base.registry.impl.ShutdownableScheduledExecutorServiceImpl<E>
-
- All Implemented Interfaces:
ExecutorService
,ScheduledExecutorService
,Shutdownable
,ShutdownableExecutorService
,ShutdownableResource
,ShutdownableScheduledExecutorService
,java.util.concurrent.Executor
,java.util.concurrent.ExecutorService
,java.util.concurrent.ScheduledExecutorService
public class ShutdownableScheduledExecutorServiceImpl<E extends ScheduledExecutorService> extends ShutdownableExecutorServiceImpl<E> implements ShutdownableScheduledExecutorService
-
-
Field Summary
-
Fields inherited from class com.linkedin.alpini.base.registry.impl.ShutdownableExecutorServiceImpl
_e
-
-
Constructor Summary
Constructors Constructor Description ShutdownableScheduledExecutorServiceImpl(E executor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ScheduledFuture<?>
schedule(java.lang.Runnable command, long delay, java.util.concurrent.TimeUnit unit)
Creates and executes a one-shot action that becomes enabled after the given delay.<V> ScheduledFuture<V>
schedule(java.util.concurrent.Callable<V> callable, long delay, java.util.concurrent.TimeUnit unit)
Creates and executes a ScheduledFuture that becomes enabled after the given delay.ScheduledFuture<?>
scheduleAtFixedRate(java.lang.Runnable command, long initialDelay, long period, java.util.concurrent.TimeUnit unit)
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 afterinitialDelay
theninitialDelay+period
, theninitialDelay + 2 * period
, and so on.ScheduledFuture<?>
scheduleWithFixedDelay(java.lang.Runnable command, long initialDelay, long delay, java.util.concurrent.TimeUnit unit)
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()
Starts the shutdown process.-
Methods inherited from class com.linkedin.alpini.base.registry.impl.ShutdownableExecutorServiceImpl
awaitTermination, execute, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdownNow, submit, submit, submit, unwrap, waitForShutdown, waitForShutdown
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.linkedin.alpini.base.concurrency.ExecutorService
submit, submit, submit
-
Methods inherited from interface java.util.concurrent.ExecutorService
awaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdownNow
-
Methods inherited from interface com.linkedin.alpini.base.registry.Shutdownable
waitForShutdown, waitForShutdown
-
Methods inherited from interface com.linkedin.alpini.base.registry.ShutdownableExecutorService
unwrap
-
Methods inherited from interface com.linkedin.alpini.base.registry.ShutdownableResource
isShutdown, isTerminated
-
-
-
-
Constructor Detail
-
ShutdownableScheduledExecutorServiceImpl
public ShutdownableScheduledExecutorServiceImpl(@Nonnull E executor)
-
-
Method Detail
-
shutdown
public void shutdown()
Description copied from interface:Shutdownable
Starts the shutdown process. It is recommended to perform the actual shutdown activity in a separate thread from the thread that calls shutdown- Specified by:
shutdown
in interfacejava.util.concurrent.ExecutorService
- Specified by:
shutdown
in interfaceShutdownable
- Overrides:
shutdown
in classShutdownableExecutorServiceImpl<E extends ScheduledExecutorService>
- See Also:
ExecutorService.shutdown()
-
schedule
@Nonnull public final ScheduledFuture<?> schedule(@Nonnull java.lang.Runnable command, long delay, @Nonnull java.util.concurrent.TimeUnit unit)
Description copied from interface:ScheduledExecutorService
Creates and executes a one-shot action that becomes enabled after the given delay.- Specified by:
schedule
in interfaceScheduledExecutorService
- Specified by:
schedule
in interfacejava.util.concurrent.ScheduledExecutorService
- Parameters:
command
- the task to executedelay
- the time from now to delay executionunit
- the time unit of the delay parameter- Returns:
- a ScheduledFuture representing pending completion of
the task and whose
get()
method will returnnull
upon completion - See Also:
ScheduledExecutorService.schedule(Runnable, long, java.util.concurrent.TimeUnit)
-
schedule
@Nonnull public final <V> ScheduledFuture<V> schedule(@Nonnull java.util.concurrent.Callable<V> callable, long delay, @Nonnull java.util.concurrent.TimeUnit unit)
Description copied from interface:ScheduledExecutorService
Creates and executes a ScheduledFuture that becomes enabled after the given delay.- Specified by:
schedule
in interfaceScheduledExecutorService
- Specified by:
schedule
in interfacejava.util.concurrent.ScheduledExecutorService
- Type Parameters:
V
- the type of the callable's result- Parameters:
callable
- the function to executedelay
- the time from now to delay executionunit
- the time unit of the delay parameter- Returns:
- a ScheduledFuture that can be used to extract result or cancel
- See Also:
ScheduledExecutorService.schedule(java.util.concurrent.Callable, long, java.util.concurrent.TimeUnit)
-
scheduleAtFixedRate
@Nonnull public final ScheduledFuture<?> scheduleAtFixedRate(@Nonnull java.lang.Runnable command, long initialDelay, long period, @Nonnull java.util.concurrent.TimeUnit unit)
Description copied from interface:ScheduledExecutorService
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 afterinitialDelay
theninitialDelay+period
, theninitialDelay + 2 * period
, and so on. If any execution of the task encounters an exception, subsequent executions are suppressed. Otherwise, the task will only terminate via cancellation or termination of the executor. If any execution of this task takes longer than its period, then subsequent executions may start late, but will not concurrently execute.- Specified by:
scheduleAtFixedRate
in interfaceScheduledExecutorService
- Specified by:
scheduleAtFixedRate
in interfacejava.util.concurrent.ScheduledExecutorService
- Parameters:
command
- the task to executeinitialDelay
- the time to delay first executionperiod
- the period between successive executionsunit
- the time unit of the initialDelay and period parameters- Returns:
- a ScheduledFuture representing pending completion of
the task, and whose
get()
method will throw an exception upon cancellation - See Also:
ScheduledExecutorService.scheduleAtFixedRate(Runnable, long, long, java.util.concurrent.TimeUnit)
-
scheduleWithFixedDelay
@Nonnull public final ScheduledFuture<?> scheduleWithFixedDelay(@Nonnull java.lang.Runnable command, long initialDelay, long delay, @Nonnull java.util.concurrent.TimeUnit unit)
Description copied from interface:ScheduledExecutorService
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. If any execution of the task encounters an exception, subsequent executions are suppressed. Otherwise, the task will only terminate via cancellation or termination of the executor.- Specified by:
scheduleWithFixedDelay
in interfaceScheduledExecutorService
- Specified by:
scheduleWithFixedDelay
in interfacejava.util.concurrent.ScheduledExecutorService
- Parameters:
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 parameters- Returns:
- a ScheduledFuture representing pending completion of
the task, and whose
get()
method will throw an exception upon cancellation - See Also:
ScheduledExecutorService.scheduleWithFixedDelay(Runnable, long, long, java.util.concurrent.TimeUnit)
-
-