Uses of Interface
io.netty.channel.IoOps
-
Packages that use IoOps 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 IoOps in io.netty.channel
Methods in io.netty.channel with parameters of type IoOps Modifier and Type Method Description long
IoRegistration. submit(IoOps ops)
Submit theIoOps
to the registration. -
Uses of IoOps in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement IoOps Modifier and Type Class Description class
EpollIoOps
Implementation ofIoOps
that is used byEpollIoHandler
and so for epoll based transports. -
Uses of IoOps in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement IoOps Modifier and Type Class Description class
KQueueIoOps
Implementation ofIoOps
for that is used byKQueueIoHandler
and so for kqueue based transports. -
Uses of IoOps in io.netty.channel.local
Classes in io.netty.channel.local that implement IoOps Modifier and Type Class Description class
LocalIoOps
IoOps
implementation that can be used withLocalIoHandler
. -
Uses of IoOps in io.netty.channel.nio
Classes in io.netty.channel.nio that implement IoOps Modifier and Type Class Description class
NioIoOps
Implementation ofIoOps
for that is used byNioIoHandler
and so for NIO based transports. -
Uses of IoOps in io.netty.channel.uring
Classes in io.netty.channel.uring that implement IoOps Modifier and Type Class Description class
IoUringIoOps
-