Uses of Interface
io.netty.util.concurrent.EventExecutorGroup
-
Packages that use EventExecutorGroup 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.kqueue BSD specific transport.io.netty.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.oio Old blocking I/O based channel API implementation - recommended for a small number of connections (< 1000).io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of EventExecutorGroup in io.netty.channel
Subinterfaces of EventExecutorGroup in io.netty.channel Modifier and Type Interface Description interfaceEventLoopWill handle all the I/O operations for aChannelonce registered.interfaceEventLoopGroupSpecialEventExecutorGroupwhich allows registeringChannels that get processed for later selection during the event loop.interfaceIoEventLoopinterfaceIoEventLoopGroupEventLoopGroupforIoEventLoops.Classes in io.netty.channel that implement EventExecutorGroup Modifier and Type Class Description classAbstractEventLoopSkeletal implementation ofEventLoop.classAbstractEventLoopGroupSkeletal implementation ofEventLoopGroup.classDefaultEventLoopclassDefaultEventLoopGroupDeprecated.classManualIoEventLoopIoEventLoopimplementation that is owned by the user and so needs to be driven by the user manually with the givenThread.classMultithreadEventLoopGroupAbstract base class forEventLoopGroupimplementations that handles their tasks with multiple threads at the same time.classMultiThreadIoEventLoopGroupIoEventLoopGroupimplementation that will handle its tasks with multiple threads.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.classThreadPerChannelEventLoopGroupDeprecated.this will be remove in the next-major release.Methods in io.netty.channel with parameters of type EventExecutorGroup Modifier and Type Method Description ChannelPipelineChannelPipeline. addAfter(EventExecutorGroup group, java.lang.String baseName, java.lang.String name, ChannelHandler handler)Deprecated.ChannelPipelineDefaultChannelPipeline. addAfter(EventExecutorGroup group, java.lang.String baseName, java.lang.String name, ChannelHandler handler)ChannelPipelineChannelPipeline. addBefore(EventExecutorGroup group, java.lang.String baseName, java.lang.String name, ChannelHandler handler)Deprecated.ChannelPipelineDefaultChannelPipeline. addBefore(EventExecutorGroup group, java.lang.String baseName, java.lang.String name, ChannelHandler handler)ChannelPipelineChannelPipeline. addFirst(EventExecutorGroup group, ChannelHandler... handlers)Deprecated.ChannelPipelineChannelPipeline. addFirst(EventExecutorGroup group, java.lang.String name, ChannelHandler handler)Deprecated.ChannelPipelineDefaultChannelPipeline. addFirst(EventExecutorGroup executor, ChannelHandler... handlers)ChannelPipelineDefaultChannelPipeline. addFirst(EventExecutorGroup group, java.lang.String name, ChannelHandler handler)ChannelPipelineChannelPipeline. addLast(EventExecutorGroup group, ChannelHandler... handlers)Deprecated.ChannelPipelineChannelPipeline. addLast(EventExecutorGroup group, java.lang.String name, ChannelHandler handler)Deprecated.ChannelPipelineDefaultChannelPipeline. addLast(EventExecutorGroup executor, ChannelHandler... handlers)ChannelPipelineDefaultChannelPipeline. addLast(EventExecutorGroup group, java.lang.String name, ChannelHandler handler) -
Uses of EventExecutorGroup in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement EventExecutorGroup Modifier and Type Class Description classEpollEventLoopDeprecated.UseSingleThreadIoEventLoopwithEpollIoHandlerclassEpollEventLoopGroupDeprecated. -
Uses of EventExecutorGroup in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement EventExecutorGroup Modifier and Type Class Description classKQueueEventLoopGroupDeprecated. -
Uses of EventExecutorGroup in io.netty.channel.local
Classes in io.netty.channel.local that implement EventExecutorGroup Modifier and Type Class Description classLocalEventLoopGroupDeprecated. -
Uses of EventExecutorGroup in io.netty.channel.nio
Classes in io.netty.channel.nio that implement EventExecutorGroup Modifier and Type Class Description classNioEventLoopDeprecated.UseSingleThreadIoEventLoopwithNioIoHandlerclassNioEventLoopGroupDeprecated. -
Uses of EventExecutorGroup in io.netty.channel.oio
Classes in io.netty.channel.oio that implement EventExecutorGroup Modifier and Type Class Description classOioEventLoopGroupDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of EventExecutorGroup in io.netty.util.concurrent
Subinterfaces of EventExecutorGroup 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 EventExecutorGroup Modifier and Type Class Description classAbstractEventExecutorAbstract base class forEventExecutorimplementations.classAbstractEventExecutorGroupAbstract base class forEventExecutorGroupimplementations.classAbstractScheduledEventExecutorAbstract base class forEventExecutors that want to support scheduling.classDefaultEventExecutorDefaultSingleThreadEventExecutorimplementation which just execute all submitted task in a serial fashion.classDefaultEventExecutorGroupDefault implementation ofMultithreadEventExecutorGroupwhich will useDefaultEventExecutorinstances to handle the tasks.classGlobalEventExecutorSingle-thread singletonEventExecutor.classImmediateEventExecutorExecutesRunnableobjects in the caller's thread.classMultithreadEventExecutorGroupAbstract base class forEventExecutorGroupimplementations that handles their tasks with multiple threads at the same time.classNonStickyEventExecutorGroupEventExecutorGroupwhich will preserveRunnableexecution order but makes no guarantees about whatEventExecutor(and thereforeThread) will be used to execute theRunnables.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.Methods in io.netty.util.concurrent that return EventExecutorGroup Modifier and Type Method Description EventExecutorGroupAbstractEventExecutor. parent()EventExecutorGroupEventExecutor. parent()Return theEventExecutorGroupwhich is the parent of thisEventExecutor,EventExecutorGroupUnorderedThreadPoolEventExecutor. parent()Deprecated.Constructors in io.netty.util.concurrent with parameters of type EventExecutorGroup Constructor Description AbstractEventExecutor(EventExecutorGroup parent)AbstractScheduledEventExecutor(EventExecutorGroup parent)DefaultEventExecutor(EventExecutorGroup parent)DefaultEventExecutor(EventExecutorGroup parent, java.util.concurrent.Executor executor)DefaultEventExecutor(EventExecutorGroup parent, java.util.concurrent.Executor executor, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler)DefaultEventExecutor(EventExecutorGroup parent, java.util.concurrent.ThreadFactory threadFactory)DefaultEventExecutor(EventExecutorGroup parent, java.util.concurrent.ThreadFactory threadFactory, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler)NonStickyEventExecutorGroup(EventExecutorGroup group)Creates a new instance.NonStickyEventExecutorGroup(EventExecutorGroup group, int maxTaskExecutePerRun)Creates a new instance.SingleThreadEventExecutor(EventExecutorGroup parent, java.util.concurrent.Executor executor, boolean addTaskWakesUp)Create a new instanceSingleThreadEventExecutor(EventExecutorGroup parent, java.util.concurrent.Executor executor, boolean addTaskWakesUp, boolean supportSuspension, int maxPendingTasks, RejectedExecutionHandler rejectedHandler)Create a new instanceSingleThreadEventExecutor(EventExecutorGroup parent, java.util.concurrent.Executor executor, boolean addTaskWakesUp, boolean supportSuspension, java.util.Queue<java.lang.Runnable> taskQueue, RejectedExecutionHandler rejectedHandler)SingleThreadEventExecutor(EventExecutorGroup parent, java.util.concurrent.Executor executor, boolean addTaskWakesUp, int maxPendingTasks, RejectedExecutionHandler rejectedHandler)Create a new instanceSingleThreadEventExecutor(EventExecutorGroup parent, java.util.concurrent.Executor executor, boolean addTaskWakesUp, java.util.Queue<java.lang.Runnable> taskQueue, RejectedExecutionHandler rejectedHandler)SingleThreadEventExecutor(EventExecutorGroup parent, java.util.concurrent.ThreadFactory threadFactory, boolean addTaskWakesUp)Create a new instanceSingleThreadEventExecutor(EventExecutorGroup parent, java.util.concurrent.ThreadFactory threadFactory, boolean addTaskWakesUp, boolean supportSuspension, int maxPendingTasks, RejectedExecutionHandler rejectedHandler)Create a new instanceSingleThreadEventExecutor(EventExecutorGroup parent, java.util.concurrent.ThreadFactory threadFactory, boolean addTaskWakesUp, int maxPendingTasks, RejectedExecutionHandler rejectedHandler)Create a new instance
-