Uses of Interface
io.netty.util.concurrent.ScheduledFuture
-
Packages that use ScheduledFuture Package Description io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of ScheduledFuture in io.netty.util.concurrent
Methods in io.netty.util.concurrent that return ScheduledFuture Modifier and Type Method Description ScheduledFuture<?>
AbstractEventExecutor. schedule(Runnable command, long delay, TimeUnit unit)
<V> ScheduledFuture<V>
AbstractEventExecutor. schedule(Callable<V> callable, long delay, TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutorGroup. schedule(Runnable command, long delay, TimeUnit unit)
<V> ScheduledFuture<V>
AbstractEventExecutorGroup. schedule(Callable<V> callable, long delay, TimeUnit unit)
ScheduledFuture<?>
AbstractScheduledEventExecutor. schedule(Runnable command, long delay, TimeUnit unit)
<V> ScheduledFuture<V>
AbstractScheduledEventExecutor. schedule(Callable<V> callable, long delay, TimeUnit unit)
ScheduledFuture<?>
EventExecutorGroup. schedule(Runnable command, long delay, TimeUnit unit)
<V> ScheduledFuture<V>
EventExecutorGroup. schedule(Callable<V> callable, long delay, TimeUnit unit)
ScheduledFuture<?>
NonStickyEventExecutorGroup. schedule(Runnable command, long delay, TimeUnit unit)
<V> ScheduledFuture<V>
NonStickyEventExecutorGroup. schedule(Callable<V> callable, long delay, TimeUnit unit)
ScheduledFuture<?>
UnorderedThreadPoolEventExecutor. schedule(Runnable command, long delay, TimeUnit unit)
<V> ScheduledFuture<V>
UnorderedThreadPoolEventExecutor. schedule(Callable<V> callable, long delay, TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutor. scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutorGroup. scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
ScheduledFuture<?>
AbstractScheduledEventExecutor. scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
ScheduledFuture<?>
EventExecutorGroup. scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
ScheduledFuture<?>
NonStickyEventExecutorGroup. scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
ScheduledFuture<?>
UnorderedThreadPoolEventExecutor. scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutor. scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutorGroup. scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)
ScheduledFuture<?>
AbstractScheduledEventExecutor. scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)
ScheduledFuture<?>
EventExecutorGroup. scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)
ScheduledFuture<?>
NonStickyEventExecutorGroup. scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)
ScheduledFuture<?>
UnorderedThreadPoolEventExecutor. scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)
-