Uses of Interface
io.netty.util.concurrent.OrderedEventExecutor
-
Packages that use OrderedEventExecutor Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.channel.embedded A virtualChannel
that helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of OrderedEventExecutor in io.netty.channel
Subinterfaces of OrderedEventExecutor in io.netty.channel Modifier and Type Interface Description interface
EventLoop
Will handle all the I/O operations for aChannel
once registered.Classes in io.netty.channel that implement OrderedEventExecutor Modifier and Type Class Description class
AbstractEventLoop
Skeletal implementation ofEventLoop
.class
DefaultEventLoop
class
SingleThreadEventLoop
Abstract base class forEventLoop
s that execute all its submitted tasks in a single thread.class
ThreadPerChannelEventLoop
Deprecated.this will be remove in the next-major release. -
Uses of OrderedEventExecutor in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement OrderedEventExecutor Modifier and Type Class Description (package private) class
EmbeddedEventLoop
-
Uses of OrderedEventExecutor in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement OrderedEventExecutor Modifier and Type Class Description class
EpollEventLoop
EventLoop
which uses epoll under the covers. -
Uses of OrderedEventExecutor in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement OrderedEventExecutor Modifier and Type Class Description (package private) class
KQueueEventLoop
EventLoop
which uses kqueue under the covers. -
Uses of OrderedEventExecutor in io.netty.channel.nio
Classes in io.netty.channel.nio that implement OrderedEventExecutor Modifier and Type Class Description class
NioEventLoop
SingleThreadEventLoop
implementation which register theChannel
's to aSelector
and so does the multi-plexing of these in the event loop. -
Uses of OrderedEventExecutor in io.netty.util.concurrent
Classes in io.netty.util.concurrent that implement OrderedEventExecutor Modifier and Type Class Description class
DefaultEventExecutor
DefaultSingleThreadEventExecutor
implementation which just execute all submitted task in a serial fashion.class
GlobalEventExecutor
Single-thread singletonEventExecutor
.private static class
NonStickyEventExecutorGroup.NonStickyOrderedEventExecutor
class
SingleThreadEventExecutor
Abstract base class forOrderedEventExecutor
's that execute all its submitted tasks in a single thread.
-