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 classManualIoEventLoopIoEventLoopimplementation that is owned by the user and so needs to be driven by the user manually with the givenThread.classSingleThreadIoEventLoopIoEventLoopimplementation 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 IoEventLoopMultiThreadIoEventLoopGroup. newChild(java.util.concurrent.Executor executor, IoHandlerFactory ioHandlerFactory, java.lang.Object... args)default IoEventLoopIoEventLoop. next()IoEventLoopIoEventLoopGroup. next()IoEventLoopMultiThreadIoEventLoopGroup. next()IoEventLoopSingleThreadIoEventLoop. next() -
Uses of IoEventLoop in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement IoEventLoop Modifier and Type Class Description classEpollEventLoopDeprecated.UseSingleThreadIoEventLoopwithEpollIoHandlerMethods in io.netty.channel.epoll that return IoEventLoop Modifier and Type Method Description protected IoEventLoopEpollEventLoopGroup. 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 IoEventLoopKQueueEventLoopGroup. 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 classNioEventLoopDeprecated.UseSingleThreadIoEventLoopwithNioIoHandlerMethods in io.netty.channel.nio that return IoEventLoop Modifier and Type Method Description protected IoEventLoopNioEventLoopGroup. newChild(java.util.concurrent.Executor executor, IoHandlerFactory ioHandlerFactory, java.lang.Object... args)Deprecated.
-