Uses of Interface
io.netty5.channel.IoHandler
-
Packages that use IoHandler Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of IoHandler in io.netty5.channel
Methods in io.netty5.channel that return IoHandler Modifier and Type Method Description IoHandler
IoHandlerFactory. newHandler()
Creates a newIoHandler
instance.Methods in io.netty5.channel with parameters of type IoHandler Modifier and Type Method Description protected EventLoop
MultithreadEventLoopGroup. newChild(Executor executor, int maxPendingTasks, RejectedExecutionHandler rejectedExecutionHandler, IoHandler ioHandler, int maxTasksPerRun, Object... args)
Creates a newEventLoop
to use.Constructors in io.netty5.channel with parameters of type IoHandler Constructor Description SingleThreadEventLoop(Executor executor, IoHandler ioHandler)
Create a new instanceSingleThreadEventLoop(Executor executor, IoHandler ioHandler, int maxPendingTasks, RejectedExecutionHandler rejectedHandler)
Create a new instanceSingleThreadEventLoop(Executor executor, IoHandler ioHandler, int maxPendingTasks, RejectedExecutionHandler rejectedHandler, int maxTasksPerRun)
Create a new instanceSingleThreadEventLoop(ThreadFactory threadFactory, IoHandler ioHandler)
Create a new instanceSingleThreadEventLoop(ThreadFactory threadFactory, IoHandler ioHandler, int maxPendingTasks, RejectedExecutionHandler rejectedHandler)
Create a new instanceSingleThreadEventLoop(ThreadFactory threadFactory, IoHandler ioHandler, int maxPendingTasks, RejectedExecutionHandler rejectedHandler, int maxTasksPerRun)
Create a new instance -
Uses of IoHandler in io.netty5.channel.epoll
Classes in io.netty5.channel.epoll that implement IoHandler Modifier and Type Class Description class
EpollHandler
IoHandler
which uses epoll under the covers. -
Uses of IoHandler in io.netty5.channel.kqueue
Classes in io.netty5.channel.kqueue that implement IoHandler Modifier and Type Class Description class
KQueueHandler
IoHandler
which uses kqueue under the covers. -
Uses of IoHandler in io.netty5.channel.local
Classes in io.netty5.channel.local that implement IoHandler Modifier and Type Class Description class
LocalHandler
-
Uses of IoHandler in io.netty5.channel.nio
Classes in io.netty5.channel.nio that implement IoHandler Modifier and Type Class Description class
NioHandler
-