Uses of Interface
io.netty.util.concurrent.ThreadAwareExecutor
Packages that use ThreadAwareExecutor
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 ThreadAwareExecutor in io.netty.channel
Subinterfaces of ThreadAwareExecutor in io.netty.channelModifier and TypeInterfaceDescriptioninterfaceWill handle all the I/O operations for aChannelonce registered.interfaceClasses in io.netty.channel that implement ThreadAwareExecutorModifier and TypeClassDescriptionclassSkeletal implementation ofEventLoop.classclassIoEventLoopimplementation that is owned by the user and so needs to be driven by the user manually with the givenThread.classAbstract 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.Methods in io.netty.channel with parameters of type ThreadAwareExecutorModifier and TypeMethodDescriptionIoHandlerFactory.newHandler(ThreadAwareExecutor ioExecutor) Creates a newIoHandlerinstance. -
Uses of ThreadAwareExecutor in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ThreadAwareExecutorModifier and TypeClassDescriptionclassDeprecated.UseSingleThreadIoEventLoopwithEpollIoHandler -
Uses of ThreadAwareExecutor in io.netty.channel.nio
Classes in io.netty.channel.nio that implement ThreadAwareExecutorModifier and TypeClassDescriptionfinal classDeprecated.UseSingleThreadIoEventLoopwithNioIoHandler -
Uses of ThreadAwareExecutor in io.netty.util.concurrent
Subinterfaces of ThreadAwareExecutor in io.netty.util.concurrentModifier and TypeInterfaceDescriptioninterfaceTheEventExecutoris a specialEventExecutorGroupwhich comes with some handy methods to see if aThreadis executed in a event loop.interfaceMarker interface forEventExecutors that will process all submitted tasks in an ordered / serial fashion.Classes in io.netty.util.concurrent that implement ThreadAwareExecutorModifier and TypeClassDescriptionclassAbstract base class forEventExecutorimplementations.classAbstract base class forEventExecutors that want to support scheduling.final classDefaultSingleThreadEventExecutorimplementation which just execute all submitted task in a serial fashion.final classSingle-thread singletonEventExecutor.final classExecutesRunnableobjects in the caller's thread.classAbstract base class forOrderedEventExecutor's that execute all its submitted tasks in a single thread.final classDeprecated.The behavior of this event executor deviates from the typical Netty execution model and can cause subtle issues as a result.