public class ManagedScheduledExecutorServiceImpl extends ManagedExecutorServiceImpl
Constructor and Description |
---|
ManagedScheduledExecutorServiceImpl(java.util.concurrent.ScheduledExecutorService delegate,
ContextServiceImpl contextService) |
Modifier and Type | Method and Description |
---|---|
static long |
nowMs() |
<V> java.util.concurrent.ScheduledFuture<V> |
schedule(java.util.concurrent.Callable<V> callable,
long delay,
java.util.concurrent.TimeUnit unit) |
<V> java.util.concurrent.ScheduledFuture<V> |
schedule(java.util.concurrent.Callable<V> vCallable,
Trigger trigger) |
java.util.concurrent.ScheduledFuture<?> |
schedule(java.lang.Runnable command,
long delay,
java.util.concurrent.TimeUnit unit) |
java.util.concurrent.ScheduledFuture<?> |
schedule(java.lang.Runnable runnable,
Trigger trigger) |
java.util.concurrent.ScheduledFuture<?> |
scheduleAtFixedRate(java.lang.Runnable command,
long initialDelay,
long period,
java.util.concurrent.TimeUnit unit) |
java.util.concurrent.ScheduledFuture<?> |
scheduleWithFixedDelay(java.lang.Runnable command,
long initialDelay,
long delay,
java.util.concurrent.TimeUnit unit) |
awaitTermination, completedFuture, completedStage, copy, copy, destroyResource, execute, failedFuture, failedStage, getActiveCount, getCompletedTaskCount, getContextService, getCorePoolSize, getDelegate, getLargestPoolSize, getMaximumPoolSize, getPoolSize, getQueueSize, isShutdown, isTerminated, newIncompleteFuture, runAsync, shutdown, shutdownNow, submit, submit, submit, supplyAsync
public ManagedScheduledExecutorServiceImpl(java.util.concurrent.ScheduledExecutorService delegate, ContextServiceImpl contextService)
public java.util.concurrent.ScheduledFuture<?> schedule(java.lang.Runnable runnable, Trigger trigger)
public <V> java.util.concurrent.ScheduledFuture<V> schedule(java.util.concurrent.Callable<V> vCallable, Trigger trigger)
public java.util.concurrent.ScheduledFuture<?> schedule(java.lang.Runnable command, long delay, java.util.concurrent.TimeUnit unit)
public <V> java.util.concurrent.ScheduledFuture<V> schedule(java.util.concurrent.Callable<V> callable, long delay, java.util.concurrent.TimeUnit unit)
public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate(java.lang.Runnable command, long initialDelay, long period, java.util.concurrent.TimeUnit unit)
public java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay(java.lang.Runnable command, long initialDelay, long delay, java.util.concurrent.TimeUnit unit)
public static long nowMs()