Uses of Class
io.netty.channel.nio.AbstractNioChannel
-
Packages that use AbstractNioChannel Package Description io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of AbstractNioChannel in io.netty.channel.nio
Subclasses of AbstractNioChannel in io.netty.channel.nio Modifier and Type Class Description class
AbstractNioByteChannel
AbstractNioChannel
base class forChannel
s that operate on bytes.class
AbstractNioMessageChannel
AbstractNioChannel
base class forChannel
s that operate on messages.Methods in io.netty.channel.nio with parameters of type AbstractNioChannel Modifier and Type Method Description private void
NioEventLoop. processSelectedKey(java.nio.channels.SelectionKey k, AbstractNioChannel ch)
-
Uses of AbstractNioChannel in io.netty.channel.socket.nio
Subclasses of AbstractNioChannel in io.netty.channel.socket.nio Modifier and Type Class Description class
NioDatagramChannel
An NIO datagramChannel
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.
-