Uses of Class
io.netty.util.concurrent.SingleThreadEventExecutor
-
Packages that use SingleThreadEventExecutor 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).io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of SingleThreadEventExecutor in io.netty.channel
Subclasses of SingleThreadEventExecutor in io.netty.channel Modifier and Type Class Description 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 SingleThreadEventExecutor in io.netty.channel.epoll
Subclasses of SingleThreadEventExecutor in io.netty.channel.epoll Modifier and Type Class Description class
EpollEventLoop
EventLoop
which uses epoll under the covers. -
Uses of SingleThreadEventExecutor in io.netty.channel.kqueue
Subclasses of SingleThreadEventExecutor in io.netty.channel.kqueue Modifier and Type Class Description (package private) class
KQueueEventLoop
EventLoop
which uses kqueue under the covers. -
Uses of SingleThreadEventExecutor in io.netty.channel.nio
Subclasses of SingleThreadEventExecutor 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. -
Uses of SingleThreadEventExecutor in io.netty.util.concurrent
Subclasses of SingleThreadEventExecutor in io.netty.util.concurrent Modifier and Type Class Description class
DefaultEventExecutor
DefaultSingleThreadEventExecutor
implementation which just execute all submitted task in a serial fashion.Fields in io.netty.util.concurrent with type parameters of type SingleThreadEventExecutor Modifier and Type Field Description private static java.util.concurrent.atomic.AtomicReferenceFieldUpdater<SingleThreadEventExecutor,ThreadProperties>
SingleThreadEventExecutor. PROPERTIES_UPDATER
private static java.util.concurrent.atomic.AtomicIntegerFieldUpdater<SingleThreadEventExecutor>
SingleThreadEventExecutor. STATE_UPDATER
Methods in io.netty.util.concurrent with parameters of type SingleThreadEventExecutor Modifier and Type Method Description void
RejectedExecutionHandler. rejected(java.lang.Runnable task, SingleThreadEventExecutor executor)
Called when someone tried to add a task toSingleThreadEventExecutor
but this failed due capacity restrictions.
-