Uses of Class
io.netty.channel.SingleThreadEventLoop
-
Packages that use SingleThreadEventLoop 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.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). -
-
Uses of SingleThreadEventLoop in io.netty.channel
Subclasses of SingleThreadEventLoop in io.netty.channel Modifier and Type Class Description class
DefaultEventLoop
class
ThreadPerChannelEventLoop
Deprecated.this will be remove in the next-major release. -
Uses of SingleThreadEventLoop in io.netty.channel.epoll
Subclasses of SingleThreadEventLoop in io.netty.channel.epoll Modifier and Type Class Description (package private) class
EpollEventLoop
EventLoop
which uses epoll under the covers. -
Uses of SingleThreadEventLoop in io.netty.channel.kqueue
Subclasses of SingleThreadEventLoop in io.netty.channel.kqueue Modifier and Type Class Description (package private) class
KQueueEventLoop
EventLoop
which uses kqueue under the covers. -
Uses of SingleThreadEventLoop in io.netty.channel.nio
Subclasses of SingleThreadEventLoop in io.netty.channel.nio 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.
-