Uses of Interface
io.netty.channel.IoHandle
-
Packages that use IoHandle 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 IoHandle in io.netty.channel
Methods in io.netty.channel with parameters of type IoHandle Modifier and Type Method Description Future<IoRegistration>
IoEventLoop. register(IoHandle handle)
default Future<IoRegistration>
IoEventLoopGroup. register(IoHandle handle)
IoRegistration
IoHandler. register(IoHandle handle)
Register aIoHandle
for IO.Future<IoRegistration>
ManualIoEventLoop. register(IoHandle handle)
Future<IoRegistration>
SingleThreadIoEventLoop. register(IoHandle handle)
Method parameters in io.netty.channel with type arguments of type IoHandle Modifier and Type Method Description boolean
IoEventLoop. isCompatible(java.lang.Class<? extends IoHandle> handleType)
default boolean
IoEventLoopGroup. isCompatible(java.lang.Class<? extends IoHandle> handleType)
Returnstrue
if the given type is compatible with thisIoEventLoopGroup
and so can be registered to the containedIoEventLoop
s,false
otherwise.boolean
IoHandler. isCompatible(java.lang.Class<? extends IoHandle> handleType)
Returnstrue
if the given type is compatible with thisIoHandler
and so can be registered,false
otherwise.boolean
ManualIoEventLoop. isCompatible(java.lang.Class<? extends IoHandle> handleType)
boolean
SingleThreadIoEventLoop. isCompatible(java.lang.Class<? extends IoHandle> handleType)
-
Uses of IoHandle in io.netty.channel.epoll
Subinterfaces of IoHandle in io.netty.channel.epoll Modifier and Type Interface Description interface
EpollIoHandle
IoHandle
implementation which is using epoll.Methods in io.netty.channel.epoll with parameters of type IoHandle Modifier and Type Method Description IoRegistration
EpollIoHandler. register(IoHandle handle)
Method parameters in io.netty.channel.epoll with type arguments of type IoHandle Modifier and Type Method Description boolean
EpollIoHandler. isCompatible(java.lang.Class<? extends IoHandle> handleType)
-
Uses of IoHandle in io.netty.channel.kqueue
Subinterfaces of IoHandle in io.netty.channel.kqueue Modifier and Type Interface Description interface
KQueueIoHandle
IoHandle
implementation that can be used with theKQueueIoHandler
.Methods in io.netty.channel.kqueue with parameters of type IoHandle Modifier and Type Method Description IoRegistration
KQueueIoHandler. register(IoHandle handle)
Method parameters in io.netty.channel.kqueue with type arguments of type IoHandle Modifier and Type Method Description boolean
KQueueIoHandler. isCompatible(java.lang.Class<? extends IoHandle> handleType)
-
Uses of IoHandle in io.netty.channel.local
Methods in io.netty.channel.local with parameters of type IoHandle Modifier and Type Method Description IoRegistration
LocalIoHandler. register(IoHandle handle)
Method parameters in io.netty.channel.local with type arguments of type IoHandle Modifier and Type Method Description boolean
LocalIoHandler. isCompatible(java.lang.Class<? extends IoHandle> handleType)
-
Uses of IoHandle in io.netty.channel.nio
Subinterfaces of IoHandle in io.netty.channel.nio Modifier and Type Interface Description interface
NioIoHandle
IoHandle
subtype for NIO based implementations that will work withNioIoHandler
.Classes in io.netty.channel.nio that implement IoHandle Modifier and Type Class Description protected class
AbstractNioByteChannel.NioByteUnsafe
protected class
AbstractNioChannel.AbstractNioUnsafe
class
NioSelectableChannelIoHandle<S extends java.nio.channels.SelectableChannel>
Allows to create anIoHandle
for aSelectableChannel
, not necessarily created by Netty.Methods in io.netty.channel.nio with parameters of type IoHandle Modifier and Type Method Description IoRegistration
NioIoHandler. register(IoHandle handle)
Method parameters in io.netty.channel.nio with type arguments of type IoHandle Modifier and Type Method Description boolean
NioIoHandler. isCompatible(java.lang.Class<? extends IoHandle> handleType)
-
Uses of IoHandle in io.netty.channel.uring
Subinterfaces of IoHandle in io.netty.channel.uring Modifier and Type Interface Description interface
IoUringIoHandle
IoHandle
implementation for io_uring.Methods in io.netty.channel.uring with parameters of type IoHandle Modifier and Type Method Description IoRegistration
IoUringIoHandler. register(IoHandle handle)
Method parameters in io.netty.channel.uring with type arguments of type IoHandle Modifier and Type Method Description boolean
IoUringIoHandler. isCompatible(java.lang.Class<? extends IoHandle> handleType)
-