Uses of Interface
io.netty.util.concurrent.ScheduledFuture
-
Packages that use ScheduledFuture Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.proxy Adds support for client connections via proxy protocols such as SOCKS and HTTP CONNECT tunnelingio.netty.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well.io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of ScheduledFuture in io.netty.handler.codec.http2
Fields in io.netty.handler.codec.http2 declared as ScheduledFuture Modifier and Type Field Description private ScheduledFuture<?>
Http2ConnectionHandler.ClosingChannelFutureListener. timeoutTask
-
Uses of ScheduledFuture in io.netty.handler.proxy
Fields in io.netty.handler.proxy declared as ScheduledFuture Modifier and Type Field Description private ScheduledFuture<?>
ProxyHandler. connectTimeoutFuture
-
Uses of ScheduledFuture in io.netty.resolver.dns
Fields in io.netty.resolver.dns declared as ScheduledFuture Modifier and Type Field Description private ScheduledFuture<?>
DnsQueryContext. timeoutFuture
-
Uses of ScheduledFuture in io.netty.util.concurrent
Classes in io.netty.util.concurrent that implement ScheduledFuture Modifier and Type Class Description (package private) class
ScheduledFutureTask<V>
private static class
UnorderedThreadPoolEventExecutor.RunnableScheduledFutureTask<V>
Methods in io.netty.util.concurrent that return ScheduledFuture Modifier and Type Method Description ScheduledFuture<?>
AbstractEventExecutor. schedule(java.lang.Runnable command, long delay, java.util.concurrent.TimeUnit unit)
<V> ScheduledFuture<V>
AbstractEventExecutor. schedule(java.util.concurrent.Callable<V> callable, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutorGroup. schedule(java.lang.Runnable command, long delay, java.util.concurrent.TimeUnit unit)
<V> ScheduledFuture<V>
AbstractEventExecutorGroup. schedule(java.util.concurrent.Callable<V> callable, long delay, java.util.concurrent.TimeUnit unit)
private <V> ScheduledFuture<V>
AbstractScheduledEventExecutor. schedule(ScheduledFutureTask<V> task)
ScheduledFuture<?>
AbstractScheduledEventExecutor. schedule(java.lang.Runnable command, long delay, java.util.concurrent.TimeUnit unit)
<V> ScheduledFuture<V>
AbstractScheduledEventExecutor. schedule(java.util.concurrent.Callable<V> callable, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
EventExecutorGroup. schedule(java.lang.Runnable command, long delay, java.util.concurrent.TimeUnit unit)
<V> ScheduledFuture<V>
EventExecutorGroup. schedule(java.util.concurrent.Callable<V> callable, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
NonStickyEventExecutorGroup. schedule(java.lang.Runnable command, long delay, java.util.concurrent.TimeUnit unit)
<V> ScheduledFuture<V>
NonStickyEventExecutorGroup. schedule(java.util.concurrent.Callable<V> callable, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
UnorderedThreadPoolEventExecutor. schedule(java.lang.Runnable command, long delay, java.util.concurrent.TimeUnit unit)
<V> ScheduledFuture<V>
UnorderedThreadPoolEventExecutor. schedule(java.util.concurrent.Callable<V> callable, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutor. scheduleAtFixedRate(java.lang.Runnable command, long initialDelay, long period, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutorGroup. scheduleAtFixedRate(java.lang.Runnable command, long initialDelay, long period, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
AbstractScheduledEventExecutor. scheduleAtFixedRate(java.lang.Runnable command, long initialDelay, long period, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
EventExecutorGroup. scheduleAtFixedRate(java.lang.Runnable command, long initialDelay, long period, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
NonStickyEventExecutorGroup. scheduleAtFixedRate(java.lang.Runnable command, long initialDelay, long period, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
UnorderedThreadPoolEventExecutor. scheduleAtFixedRate(java.lang.Runnable command, long initialDelay, long period, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutor. scheduleWithFixedDelay(java.lang.Runnable command, long initialDelay, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
AbstractEventExecutorGroup. scheduleWithFixedDelay(java.lang.Runnable command, long initialDelay, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
AbstractScheduledEventExecutor. scheduleWithFixedDelay(java.lang.Runnable command, long initialDelay, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
EventExecutorGroup. scheduleWithFixedDelay(java.lang.Runnable command, long initialDelay, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
NonStickyEventExecutorGroup. scheduleWithFixedDelay(java.lang.Runnable command, long initialDelay, long delay, java.util.concurrent.TimeUnit unit)
ScheduledFuture<?>
UnorderedThreadPoolEventExecutor. scheduleWithFixedDelay(java.lang.Runnable command, long initialDelay, long delay, java.util.concurrent.TimeUnit unit)
-