public class TraceableScheduledExecutorService extends TraceableExecutorService implements ScheduledExecutorService
ScheduledExecutorService to support tracing in Executors.| Constructor and Description |
|---|
TraceableScheduledExecutorService(org.springframework.beans.factory.BeanFactory beanFactory,
ExecutorService delegate) |
TraceableScheduledExecutorService(org.springframework.beans.factory.BeanFactory beanFactory,
ExecutorService delegate,
String beanName) |
| Modifier and Type | Method and Description |
|---|---|
<V> ScheduledFuture<V> |
schedule(Callable<V> callable,
long delay,
TimeUnit unit) |
ScheduledFuture<?> |
schedule(Runnable command,
long delay,
TimeUnit unit) |
ScheduledFuture<?> |
scheduleAtFixedRate(Runnable command,
long initialDelay,
long period,
TimeUnit unit) |
ScheduledFuture<?> |
scheduleWithFixedDelay(Runnable command,
long initialDelay,
long delay,
TimeUnit unit) |
awaitTermination, execute, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdown, shutdownNow, submit, submit, submitclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitawaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdown, shutdownNow, submit, submit, submitpublic TraceableScheduledExecutorService(org.springframework.beans.factory.BeanFactory beanFactory,
ExecutorService delegate)
public TraceableScheduledExecutorService(org.springframework.beans.factory.BeanFactory beanFactory,
ExecutorService delegate,
String beanName)
public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit)
schedule in interface ScheduledExecutorServicepublic <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit)
schedule in interface ScheduledExecutorServicepublic ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
scheduleAtFixedRate in interface ScheduledExecutorServicepublic ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)
scheduleWithFixedDelay in interface ScheduledExecutorServiceCopyright © 2021 Pivotal Software, Inc.. All rights reserved.