Uses of Interface
io.netty.util.concurrent.ThreadAwareExecutor
-
Packages that use ThreadAwareExecutor 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.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 ThreadAwareExecutor in io.netty.channel
Subinterfaces of ThreadAwareExecutor in io.netty.channel Modifier and Type Interface Description interfaceEventLoopWill handle all the I/O operations for aChannelonce registered.interfaceIoEventLoopClasses in io.netty.channel that implement ThreadAwareExecutor Modifier and Type Class Description classAbstractEventLoopSkeletal implementation ofEventLoop.classDefaultEventLoopclassManualIoEventLoopIoEventLoopimplementation that is owned by the user and so needs to be driven by the user manually with the givenThread.classSingleThreadEventLoopAbstract base class forEventLoops that execute all its submitted tasks in a single thread.classSingleThreadIoEventLoopIoEventLoopimplementation that execute all its submitted tasks in a single thread using the providedIoHandler.classThreadPerChannelEventLoopDeprecated.this will be remove in the next-major release.Methods in io.netty.channel with parameters of type ThreadAwareExecutor Modifier and Type Method Description IoHandlerIoHandlerFactory. newHandler(ThreadAwareExecutor ioExecutor)Creates a newIoHandlerinstance. -
Uses of ThreadAwareExecutor in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ThreadAwareExecutor Modifier and Type Class Description classEpollEventLoopDeprecated.UseSingleThreadIoEventLoopwithEpollIoHandler -
Uses of ThreadAwareExecutor in io.netty.channel.nio
Classes in io.netty.channel.nio that implement ThreadAwareExecutor Modifier and Type Class Description classNioEventLoopDeprecated.UseSingleThreadIoEventLoopwithNioIoHandler -
Uses of ThreadAwareExecutor in io.netty.util.concurrent
Subinterfaces of ThreadAwareExecutor in io.netty.util.concurrent Modifier and Type Interface Description interfaceEventExecutorTheEventExecutoris a specialEventExecutorGroupwhich comes with some handy methods to see if aThreadis executed in a event loop.interfaceOrderedEventExecutorMarker interface forEventExecutors that will process all submitted tasks in an ordered / serial fashion.Classes in io.netty.util.concurrent that implement ThreadAwareExecutor Modifier and Type Class Description classAbstractEventExecutorAbstract base class forEventExecutorimplementations.classAbstractScheduledEventExecutorAbstract base class forEventExecutors that want to support scheduling.classDefaultEventExecutorDefaultSingleThreadEventExecutorimplementation which just execute all submitted task in a serial fashion.classGlobalEventExecutorSingle-thread singletonEventExecutor.classImmediateEventExecutorExecutesRunnableobjects in the caller's thread.classSingleThreadEventExecutorAbstract base class forOrderedEventExecutor's that execute all its submitted tasks in a single thread.classUnorderedThreadPoolEventExecutorDeprecated.The behavior of this event executor deviates from the typical Netty execution model and can cause subtle issues as a result.
-