Uses of Class
io.netty.util.concurrent.SingleThreadEventExecutor
Packages that use SingleThreadEventExecutor
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
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 SingleThreadEventExecutor in io.netty.channel
Subclasses of SingleThreadEventExecutor 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 SingleThreadEventExecutor in io.netty.channel.epoll
Subclasses of SingleThreadEventExecutor in io.netty.channel.epoll -
Uses of SingleThreadEventExecutor in io.netty.channel.kqueue
Subclasses of SingleThreadEventExecutor in io.netty.channel.kqueueModifier and TypeClassDescription(package private) final class
EventLoop
which uses kqueue under the covers. -
Uses of SingleThreadEventExecutor in io.netty.channel.nio
Subclasses of SingleThreadEventExecutor 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 SingleThreadEventExecutor in io.netty.util.concurrent
Subclasses of SingleThreadEventExecutor in io.netty.util.concurrentModifier and TypeClassDescriptionfinal class
DefaultSingleThreadEventExecutor
implementation which just execute all submitted task in a serial fashion.Fields in io.netty.util.concurrent with type parameters of type SingleThreadEventExecutorModifier and TypeFieldDescriptionprivate static final AtomicReferenceFieldUpdater
<SingleThreadEventExecutor, ThreadProperties> SingleThreadEventExecutor.PROPERTIES_UPDATER
private static final AtomicIntegerFieldUpdater
<SingleThreadEventExecutor> SingleThreadEventExecutor.STATE_UPDATER
Methods in io.netty.util.concurrent with parameters of type SingleThreadEventExecutorModifier and TypeMethodDescriptionvoid
RejectedExecutionHandler.rejected
(Runnable task, SingleThreadEventExecutor executor) Called when someone tried to add a task toSingleThreadEventExecutor
but this failed due capacity restrictions.