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.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 IoHandlerIoHandlerFactory. newHandler()Creates a newIoHandlerinstance.Methods in io.netty5.channel with parameters of type IoHandler Modifier and Type Method Description protected EventLoopMultithreadEventLoopGroup. newChild(Executor executor, int maxPendingTasks, io.netty5.util.concurrent.RejectedExecutionHandler rejectedExecutionHandler, IoHandler ioHandler, int maxTasksPerRun, Object... args)Creates a newEventLoopto 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, io.netty5.util.concurrent.RejectedExecutionHandler rejectedHandler)Create a new instanceSingleThreadEventLoop(Executor executor, IoHandler ioHandler, int maxPendingTasks, io.netty5.util.concurrent.RejectedExecutionHandler rejectedHandler, int maxTasksPerRun)Create a new instanceSingleThreadEventLoop(ThreadFactory threadFactory, IoHandler ioHandler)Create a new instanceSingleThreadEventLoop(ThreadFactory threadFactory, IoHandler ioHandler, int maxPendingTasks, io.netty5.util.concurrent.RejectedExecutionHandler rejectedHandler)Create a new instanceSingleThreadEventLoop(ThreadFactory threadFactory, IoHandler ioHandler, int maxPendingTasks, io.netty5.util.concurrent.RejectedExecutionHandler rejectedHandler, int maxTasksPerRun)Create a new instance -
Uses of IoHandler in io.netty5.channel.local
Classes in io.netty5.channel.local that implement IoHandler Modifier and Type Class Description classLocalHandler -
Uses of IoHandler in io.netty5.channel.nio
Classes in io.netty5.channel.nio that implement IoHandler Modifier and Type Class Description classNioHandler
-