Uses of Class
io.netty.util.concurrent.AbstractScheduledEventExecutor
Packages that use AbstractScheduledEventExecutor
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
A virtual
Channel
that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context.Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
BSD specific transport.
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
Utility classes for concurrent / async tasks.
-
Uses of AbstractScheduledEventExecutor in io.netty.channel
Subclasses of AbstractScheduledEventExecutor in io.netty.channelModifier and TypeClassDescriptionclass
class
Abstract base class forEventLoop
s that execute all its submitted tasks in a single thread.class
Deprecated.this will be remove in the next-major release. -
Uses of AbstractScheduledEventExecutor in io.netty.channel.embedded
Subclasses of AbstractScheduledEventExecutor in io.netty.channel.embedded -
Uses of AbstractScheduledEventExecutor in io.netty.channel.epoll
Subclasses of AbstractScheduledEventExecutor in io.netty.channel.epoll -
Uses of AbstractScheduledEventExecutor in io.netty.channel.kqueue
Subclasses of AbstractScheduledEventExecutor in io.netty.channel.kqueueModifier and TypeClassDescription(package private) final class
EventLoop
which uses kqueue under the covers. -
Uses of AbstractScheduledEventExecutor in io.netty.channel.nio
Subclasses of AbstractScheduledEventExecutor in io.netty.channel.nioModifier and TypeClassDescriptionfinal class
SingleThreadEventLoop
implementation which register theChannel
's to aSelector
and so does the multi-plexing of these in the event loop. -
Uses of AbstractScheduledEventExecutor in io.netty.util.concurrent
Subclasses of AbstractScheduledEventExecutor in io.netty.util.concurrentModifier and TypeClassDescriptionfinal class
DefaultSingleThreadEventExecutor
implementation which just execute all submitted task in a serial fashion.final class
Single-thread singletonEventExecutor
.class
Abstract base class forOrderedEventExecutor
's that execute all its submitted tasks in a single thread.Methods in io.netty.util.concurrent that return AbstractScheduledEventExecutorModifier and TypeMethodDescriptionprivate AbstractScheduledEventExecutor
ScheduledFutureTask.scheduledExecutor()
Constructors in io.netty.util.concurrent with parameters of type AbstractScheduledEventExecutorModifierConstructorDescription(package private)
ScheduledFutureTask
(AbstractScheduledEventExecutor executor, Runnable runnable, long nanoTime) (package private)
ScheduledFutureTask
(AbstractScheduledEventExecutor executor, Runnable runnable, long nanoTime, long period) (package private)
ScheduledFutureTask
(AbstractScheduledEventExecutor executor, Callable<V> callable, long nanoTime) (package private)
ScheduledFutureTask
(AbstractScheduledEventExecutor executor, Callable<V> callable, long nanoTime, long period)