Uses of Interface
io.netty.channel.IoEventLoop
-
Packages that use IoEventLoop 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.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of IoEventLoop in io.netty.channel
Classes in io.netty.channel that implement IoEventLoop Modifier and Type Class Description class
ManualIoEventLoop
IoEventLoop
implementation that is owned by the user and so needs to be driven by the user manually with the givenThread
.class
SingleThreadIoEventLoop
IoEventLoop
implementation that execute all its submitted tasks in a single thread using the providedIoHandler
.Methods in io.netty.channel that return IoEventLoop Modifier and Type Method Description protected IoEventLoop
MultiThreadIoEventLoopGroup. newChild(java.util.concurrent.Executor executor, IoHandlerFactory ioHandlerFactory, java.lang.Object... args)
default IoEventLoop
IoEventLoop. next()
IoEventLoop
IoEventLoopGroup. next()
IoEventLoop
MultiThreadIoEventLoopGroup. next()
IoEventLoop
SingleThreadIoEventLoop. next()
-
Uses of IoEventLoop in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement IoEventLoop Modifier and Type Class Description class
EpollEventLoop
Deprecated.UseSingleThreadIoEventLoop
withEpollIoHandler
Methods in io.netty.channel.epoll that return IoEventLoop Modifier and Type Method Description protected IoEventLoop
EpollEventLoopGroup. newChild(java.util.concurrent.Executor executor, IoHandlerFactory ioHandlerFactory, java.lang.Object... args)
Deprecated. -
Uses of IoEventLoop in io.netty.channel.kqueue
Methods in io.netty.channel.kqueue that return IoEventLoop Modifier and Type Method Description protected IoEventLoop
KQueueEventLoopGroup. newChild(java.util.concurrent.Executor executor, IoHandlerFactory ioHandlerFactory, java.lang.Object... args)
Deprecated. -
Uses of IoEventLoop in io.netty.channel.nio
Classes in io.netty.channel.nio that implement IoEventLoop Modifier and Type Class Description class
NioEventLoop
Deprecated.UseSingleThreadIoEventLoop
withNioIoHandler
Methods in io.netty.channel.nio that return IoEventLoop Modifier and Type Method Description protected IoEventLoop
NioEventLoopGroup. newChild(java.util.concurrent.Executor executor, IoHandlerFactory ioHandlerFactory, java.lang.Object... args)
Deprecated.
-