Uses of Interface
io.netty.channel.EventLoopGroup
Packages that use EventLoopGroup
Package
Description
The helper classes with fluent API which enable an easy implementation of
typical client side and server side channel initialization.
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).
-
Uses of EventLoopGroup in io.netty.bootstrap
Methods in io.netty.bootstrap that return EventLoopGroupModifier and TypeMethodDescriptionServerBootstrap.childGroup()Deprecated.ServerBootstrapConfig.childGroup()Returns the configuredEventLoopGroupwhich will be used for the child channels ornullif non is configured yet.final EventLoopGroupAbstractBootstrap.group()Deprecated.UseAbstractBootstrap.config()instead.final EventLoopGroupAbstractBootstrapConfig.group()Returns the configuredEventLoopGroupornullif non is configured yet.Methods in io.netty.bootstrap with parameters of type EventLoopGroupModifier and TypeMethodDescriptionBootstrap.clone(EventLoopGroup group) Returns a deep clone of this bootstrap which has the identical configuration except that it uses the givenEventLoopGroup.AbstractBootstrap.group(EventLoopGroup group) TheEventLoopGroupwhich is used to handle all the events for the to-be-createdChannelServerBootstrap.group(EventLoopGroup group) Specify theEventLoopGroupwhich is used for the parent (acceptor) and the child (client).ServerBootstrap.group(EventLoopGroup parentGroup, EventLoopGroup childGroup) Set theEventLoopGroupfor the parent (acceptor) and the child (client). -
Uses of EventLoopGroup in io.netty.channel
Subinterfaces of EventLoopGroup in io.netty.channelModifier and TypeInterfaceDescriptioninterfaceWill handle all the I/O operations for aChannelonce registered.interfaceinterfaceEventLoopGroupforIoEventLoops.Classes in io.netty.channel that implement EventLoopGroupModifier 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 that return EventLoopGroupModifier and TypeMethodDescriptionAbstractEventLoop.parent()EventLoop.parent()SingleThreadEventLoop.parent()Constructors in io.netty.channel with parameters of type EventLoopGroupModifierConstructorDescriptionprotectedAbstractEventLoop(EventLoopGroup parent) DefaultEventLoop(EventLoopGroup parent) DefaultEventLoop(EventLoopGroup parent, Executor executor) DefaultEventLoop(EventLoopGroup parent, ThreadFactory threadFactory) protectedSingleThreadEventLoop(EventLoopGroup parent, Executor executor, boolean addTaskWakesUp) protectedSingleThreadEventLoop(EventLoopGroup parent, Executor executor, boolean addTaskWakesUp, boolean supportSuspension) protectedSingleThreadEventLoop(EventLoopGroup parent, Executor executor, boolean addTaskWakesUp, boolean supportSuspension, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler) protectedSingleThreadEventLoop(EventLoopGroup parent, Executor executor, boolean addTaskWakesUp, boolean supportSuspension, Queue<Runnable> taskQueue, Queue<Runnable> tailTaskQueue, RejectedExecutionHandler rejectedExecutionHandler) protectedSingleThreadEventLoop(EventLoopGroup parent, Executor executor, boolean addTaskWakesUp, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler) protectedSingleThreadEventLoop(EventLoopGroup parent, Executor executor, boolean addTaskWakesUp, Queue<Runnable> taskQueue, Queue<Runnable> tailTaskQueue, RejectedExecutionHandler rejectedExecutionHandler) protectedSingleThreadEventLoop(EventLoopGroup parent, ThreadFactory threadFactory, boolean addTaskWakesUp) protectedSingleThreadEventLoop(EventLoopGroup parent, ThreadFactory threadFactory, boolean addTaskWakesUp, boolean supportSuspension) protectedSingleThreadEventLoop(EventLoopGroup parent, ThreadFactory threadFactory, boolean addTaskWakesUp, boolean supportSuspension, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler) protectedSingleThreadEventLoop(EventLoopGroup parent, ThreadFactory threadFactory, boolean addTaskWakesUp, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler) -
Uses of EventLoopGroup in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement EventLoopGroupModifier and TypeClassDescriptionclassDeprecated.UseSingleThreadIoEventLoopwithEpollIoHandlerfinal classDeprecated. -
Uses of EventLoopGroup in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement EventLoopGroupModifier and TypeClassDescriptionfinal classDeprecated. -
Uses of EventLoopGroup in io.netty.channel.local
Classes in io.netty.channel.local that implement EventLoopGroupModifier and TypeClassDescriptionclassDeprecated. -
Uses of EventLoopGroup in io.netty.channel.nio
Classes in io.netty.channel.nio that implement EventLoopGroupModifier and TypeClassDescriptionfinal classDeprecated.UseSingleThreadIoEventLoopwithNioIoHandlerclassDeprecated. -
Uses of EventLoopGroup in io.netty.channel.oio
Classes in io.netty.channel.oio that implement EventLoopGroupModifier and TypeClassDescriptionclassDeprecated.use NIO / EPOLL / KQUEUE transport.
ServerBootstrap.config()instead.