Uses of Class
io.netty5.channel.nio.AbstractNioChannel
-
Packages that use AbstractNioChannel Package Description io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of AbstractNioChannel in io.netty5.channel.nio
Subclasses of AbstractNioChannel in io.netty5.channel.nio Modifier and Type Class Description class
AbstractNioByteChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>
AbstractNioChannel
base class forChannel
s that operate on bytes.class
AbstractNioMessageChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>
AbstractNioChannel
base class forChannel
s that operate on messages. -
Uses of AbstractNioChannel in io.netty5.channel.socket.nio
Subclasses of AbstractNioChannel in io.netty5.channel.socket.nio Modifier and Type Class Description class
NioDatagramChannel
An NIODatagramChannel
that sends and receives anAddressedEnvelope
.class
NioServerSocketChannel
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections.class
NioSocketChannel
SocketChannel
which uses NIO selector based implementation.
-