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.
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 TypeClassDescriptionclassclassAbstract base class forEventLoops that execute all its submitted tasks in a single thread.classIoEventLoopimplementation that execute all its submitted tasks in a single thread using the providedIoHandler.classDeprecated.this will be remove in the next-major release. -
Uses of SingleThreadEventExecutor in io.netty.channel.epoll
Subclasses of SingleThreadEventExecutor in io.netty.channel.epollModifier and TypeClassDescriptionclassDeprecated.UseSingleThreadIoEventLoopwithEpollIoHandler -
Uses of SingleThreadEventExecutor in io.netty.channel.nio
Subclasses of SingleThreadEventExecutor in io.netty.channel.nioModifier and TypeClassDescriptionfinal classDeprecated.UseSingleThreadIoEventLoopwithNioIoHandler -
Uses of SingleThreadEventExecutor in io.netty.util.concurrent
Subclasses of SingleThreadEventExecutor in io.netty.util.concurrentModifier and TypeClassDescriptionfinal classDefaultSingleThreadEventExecutorimplementation which just execute all submitted task in a serial fashion.Methods in io.netty.util.concurrent with parameters of type SingleThreadEventExecutorModifier and TypeMethodDescriptionvoidRejectedExecutionHandler.rejected(Runnable task, SingleThreadEventExecutor executor) Called when someone tried to add a task toSingleThreadEventExecutorbut this failed due capacity restrictions.