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.Classes in io.netty.channel that implement EventExecutorGroup Modifier and Type Class Description classAbstractEventLoopSkeletal implementation ofEventLoop.classAbstractEventLoopGroupSkeletal implementation ofEventLoopGroup.classDefaultEventLoopclassDefaultEventLoopGroupMultithreadEventLoopGroupwhich must be used for the local transport.classMultithreadEventLoopGroupAbstract base class forEventLoopGroupimplementations that handles their tasks with multiple threads at the same time.classSingleThreadEventLoopAbstract base class forEventLoops that execute all its submitted tasks in a single thread.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, String baseName, String name, ChannelHandler handler)Inserts aChannelHandlerafter an existing handler of this pipeline.ChannelPipelineDefaultChannelPipeline. addAfter(EventExecutorGroup group, String baseName, String name, ChannelHandler handler)ChannelPipelineChannelPipeline. addBefore(EventExecutorGroup group, String baseName, String name, ChannelHandler handler)Inserts aChannelHandlerbefore an existing handler of this pipeline.ChannelPipelineDefaultChannelPipeline. addBefore(EventExecutorGroup group, String baseName, String name, ChannelHandler handler)ChannelPipelineChannelPipeline. addFirst(EventExecutorGroup group, ChannelHandler... handlers)InsertsChannelHandlers at the first position of this pipeline.ChannelPipelineChannelPipeline. addFirst(EventExecutorGroup group, String name, ChannelHandler handler)Inserts aChannelHandlerat the first position of this pipeline.ChannelPipelineDefaultChannelPipeline. addFirst(EventExecutorGroup executor, ChannelHandler... handlers)ChannelPipelineDefaultChannelPipeline. addFirst(EventExecutorGroup group, String name, ChannelHandler handler)ChannelPipelineChannelPipeline. addLast(EventExecutorGroup group, ChannelHandler... handlers)InsertsChannelHandlers at the last position of this pipeline.ChannelPipelineChannelPipeline. addLast(EventExecutorGroup group, String name, ChannelHandler handler)Appends aChannelHandlerat the last position of this pipeline.ChannelPipelineDefaultChannelPipeline. addLast(EventExecutorGroup executor, ChannelHandler... handlers)ChannelPipelineDefaultChannelPipeline. addLast(EventExecutorGroup group, 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 classEpollEventLoopGroupEventLoopGroupwhich uses epoll under the covers. -
Uses of EventExecutorGroup in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement EventExecutorGroup Modifier and Type Class Description classKQueueEventLoopGroup -
Uses of EventExecutorGroup in io.netty.channel.local
Classes in io.netty.channel.local that implement EventExecutorGroup Modifier and Type Class Description classLocalEventLoopGroupDeprecated.UseDefaultEventLoopGroupinstead. -
Uses of EventExecutorGroup in io.netty.channel.nio
Classes in io.netty.channel.nio that implement EventExecutorGroup Modifier and Type Class Description classNioEventLoopSingleThreadEventLoopimplementation which register theChannel's to aSelectorand so does the multi-plexing of these in the event loop.classNioEventLoopGroup -
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.classUnorderedThreadPoolEventExecutorEventExecutorimplementation which makes no guarantees about the ordering of task execution that are submitted because there may be multiple threads executing these tasks.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()
-