Uses of Interface
io.netty.channel.IoEvent
-
Packages that use IoEvent 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).io.netty.channel.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls. -
-
Uses of IoEvent in io.netty.channel
Methods in io.netty.channel with parameters of type IoEvent Modifier and Type Method Description void
IoHandle. handle(IoRegistration registration, IoEvent ioEvent)
Be called once there is something to handle. -
Uses of IoEvent in io.netty.channel.epoll
Subinterfaces of IoEvent in io.netty.channel.epoll Modifier and Type Interface Description interface
EpollIoEvent
IoEvent
that must be handled by theEpollIoHandle
. -
Uses of IoEvent in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement IoEvent Modifier and Type Class Description class
KQueueIoEvent
IoEvent
to use withKQueueIoHandler
. -
Uses of IoEvent in io.netty.channel.nio
Subinterfaces of IoEvent in io.netty.channel.nio Modifier and Type Interface Description interface
NioIoEvent
IoEvent
that must be handled by theNioIoHandle
.Methods in io.netty.channel.nio with parameters of type IoEvent Modifier and Type Method Description void
AbstractNioChannel.AbstractNioUnsafe. handle(IoRegistration registration, IoEvent event)
void
NioSelectableChannelIoHandle. handle(IoRegistration registration, IoEvent ioEvent)
-
Uses of IoEvent in io.netty.channel.uring
Classes in io.netty.channel.uring that implement IoEvent Modifier and Type Class Description class
IoUringIoEvent
IoEvent
that will be produced as an result of aIoUringIoOps
.
-