Uses of Interface
io.netty.channel.IoHandler
-
Packages that use IoHandler 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.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls. -
-
Uses of IoHandler in io.netty.channel
Methods in io.netty.channel that return IoHandler Modifier and Type Method Description protected IoHandler
SingleThreadIoEventLoop. ioHandler()
IoHandler
IoHandlerFactory. newHandler(ThreadAwareExecutor ioExecutor)
Creates a newIoHandler
instance.Method parameters in io.netty.channel with type arguments of type IoHandler Modifier and Type Method Description boolean
IoEventLoop. isIoType(java.lang.Class<? extends IoHandler> handlerType)
default boolean
IoEventLoopGroup. isIoType(java.lang.Class<? extends IoHandler> handlerType)
boolean
ManualIoEventLoop. isIoType(java.lang.Class<? extends IoHandler> handlerType)
boolean
SingleThreadIoEventLoop. isIoType(java.lang.Class<? extends IoHandler> handlerType)
-
Uses of IoHandler in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement IoHandler Modifier and Type Class Description class
EpollIoHandler
IoHandler
which uses epoll under the covers. -
Uses of IoHandler in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement IoHandler Modifier and Type Class Description class
KQueueIoHandler
IoHandler
which uses kqueue under the covers. -
Uses of IoHandler in io.netty.channel.local
Classes in io.netty.channel.local that implement IoHandler Modifier and Type Class Description class
LocalIoHandler
-
Uses of IoHandler in io.netty.channel.nio
Classes in io.netty.channel.nio that implement IoHandler Modifier and Type Class Description class
NioIoHandler
-
Uses of IoHandler in io.netty.channel.uring
Classes in io.netty.channel.uring that implement IoHandler Modifier and Type Class Description class
IoUringIoHandler
IoHandler
which is implemented in terms of the Linux-specificio_uring
API.
-