Uses of Interface
io.netty.util.concurrent.EventExecutorGroup
Packages that use EventExecutorGroup
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.
A virtual transport that enables the communication between the two
parties in the same virtual machine.
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based channel API implementation - recommended for
a small number of connections (< 1000).
Utility classes for concurrent / async tasks.
-
Uses of EventExecutorGroup in io.netty.channel
Subinterfaces of EventExecutorGroup in io.netty.channelModifier and TypeInterfaceDescriptioninterfaceWill handle all the I/O operations for aChannelonce registered.interfaceSpecialEventExecutorGroupwhich allows registeringChannels that get processed for later selection during the event loop.interfaceinterfaceEventLoopGroupforIoEventLoops.Classes in io.netty.channel that implement EventExecutorGroupModifier and TypeClassDescriptionclassSkeletal implementation ofEventLoop.classSkeletal implementation ofEventLoopGroup.classclassDeprecated.classIoEventLoopimplementation that is owned by the user and so needs to be driven by the user manually with the givenThread.classAbstract base class forEventLoopGroupimplementations that handles their tasks with multiple threads at the same time.classIoEventLoopGroupimplementation that will handle its tasks with multiple threads.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.classDeprecated.this will be remove in the next-major release.Methods in io.netty.channel with parameters of type EventExecutorGroupModifier and TypeMethodDescriptionChannelPipeline.addAfter(EventExecutorGroup group, String baseName, String name, ChannelHandler handler) Deprecated.final ChannelPipelineDefaultChannelPipeline.addAfter(EventExecutorGroup group, String baseName, String name, ChannelHandler handler) ChannelPipeline.addBefore(EventExecutorGroup group, String baseName, String name, ChannelHandler handler) Deprecated.final ChannelPipelineDefaultChannelPipeline.addBefore(EventExecutorGroup group, String baseName, String name, ChannelHandler handler) ChannelPipeline.addFirst(EventExecutorGroup group, ChannelHandler... handlers) Deprecated.ChannelPipeline.addFirst(EventExecutorGroup group, String name, ChannelHandler handler) Deprecated.final ChannelPipelineDefaultChannelPipeline.addFirst(EventExecutorGroup executor, ChannelHandler... handlers) final ChannelPipelineDefaultChannelPipeline.addFirst(EventExecutorGroup group, String name, ChannelHandler handler) ChannelPipeline.addLast(EventExecutorGroup group, ChannelHandler... handlers) Deprecated.ChannelPipeline.addLast(EventExecutorGroup group, String name, ChannelHandler handler) Deprecated.final ChannelPipelineDefaultChannelPipeline.addLast(EventExecutorGroup executor, ChannelHandler... handlers) final ChannelPipelineDefaultChannelPipeline.addLast(EventExecutorGroup group, String name, ChannelHandler handler) -
Uses of EventExecutorGroup in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement EventExecutorGroupModifier and TypeClassDescriptionclassDeprecated.UseSingleThreadIoEventLoopwithEpollIoHandlerfinal classDeprecated. -
Uses of EventExecutorGroup in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement EventExecutorGroupModifier and TypeClassDescriptionfinal classDeprecated. -
Uses of EventExecutorGroup in io.netty.channel.local
Classes in io.netty.channel.local that implement EventExecutorGroupModifier and TypeClassDescriptionclassDeprecated. -
Uses of EventExecutorGroup in io.netty.channel.nio
Classes in io.netty.channel.nio that implement EventExecutorGroupModifier and TypeClassDescriptionfinal classDeprecated.UseSingleThreadIoEventLoopwithNioIoHandlerclassDeprecated. -
Uses of EventExecutorGroup in io.netty.channel.oio
Classes in io.netty.channel.oio that implement EventExecutorGroupModifier and TypeClassDescriptionclassDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of EventExecutorGroup in io.netty.util.concurrent
Subinterfaces of EventExecutorGroup 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 EventExecutorGroupModifier and TypeClassDescriptionclassAbstract base class forEventExecutorimplementations.classAbstract base class forEventExecutorGroupimplementations.classAbstract base class forEventExecutors that want to support scheduling.final classDefaultSingleThreadEventExecutorimplementation which just execute all submitted task in a serial fashion.classDefault implementation ofMultithreadEventExecutorGroupwhich will useDefaultEventExecutorinstances to handle the tasks.final classSingle-thread singletonEventExecutor.final classExecutesRunnableobjects in the caller's thread.classAbstract base class forEventExecutorGroupimplementations that handles their tasks with multiple threads at the same time.final classEventExecutorGroupwhich will preserveRunnableexecution order but makes no guarantees about whatEventExecutor(and thereforeThread) will be used to execute theRunnables.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.Methods in io.netty.util.concurrent that return EventExecutorGroupModifier and TypeMethodDescriptionAbstractEventExecutor.parent()EventExecutor.parent()Return theEventExecutorGroupwhich is the parent of thisEventExecutor,UnorderedThreadPoolEventExecutor.parent()Deprecated.Constructors in io.netty.util.concurrent with parameters of type EventExecutorGroupModifierConstructorDescriptionprotectedprotectedDefaultEventExecutor(EventExecutorGroup parent, Executor executor) DefaultEventExecutor(EventExecutorGroup parent, Executor executor, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler) DefaultEventExecutor(EventExecutorGroup parent, ThreadFactory threadFactory) DefaultEventExecutor(EventExecutorGroup parent, ThreadFactory threadFactory, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler) Creates a new instance.NonStickyEventExecutorGroup(EventExecutorGroup group, int maxTaskExecutePerRun) Creates a new instance.protectedSingleThreadEventExecutor(EventExecutorGroup parent, Executor executor, boolean addTaskWakesUp) Create a new instanceprotectedSingleThreadEventExecutor(EventExecutorGroup parent, Executor executor, boolean addTaskWakesUp, boolean supportSuspension, int maxPendingTasks, RejectedExecutionHandler rejectedHandler) Create a new instanceprotectedSingleThreadEventExecutor(EventExecutorGroup parent, Executor executor, boolean addTaskWakesUp, boolean supportSuspension, Queue<Runnable> taskQueue, RejectedExecutionHandler rejectedHandler) protectedSingleThreadEventExecutor(EventExecutorGroup parent, Executor executor, boolean addTaskWakesUp, int maxPendingTasks, RejectedExecutionHandler rejectedHandler) Create a new instanceprotectedSingleThreadEventExecutor(EventExecutorGroup parent, Executor executor, boolean addTaskWakesUp, Queue<Runnable> taskQueue, RejectedExecutionHandler rejectedHandler) protectedSingleThreadEventExecutor(EventExecutorGroup parent, ThreadFactory threadFactory, boolean addTaskWakesUp) Create a new instanceprotectedSingleThreadEventExecutor(EventExecutorGroup parent, ThreadFactory threadFactory, boolean addTaskWakesUp, boolean supportSuspension, int maxPendingTasks, RejectedExecutionHandler rejectedHandler) Create a new instanceprotectedSingleThreadEventExecutor(EventExecutorGroup parent, ThreadFactory threadFactory, boolean addTaskWakesUp, int maxPendingTasks, RejectedExecutionHandler rejectedHandler) Create a new instance