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.sctp.nio NIO-based SCTP 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).io.netty.channel.udt.nio UDT Transport for NIO Channels. -
-
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. -
Uses of AbstractNioChannel in io.netty.channel.sctp.nio
Subclasses of AbstractNioChannel in io.netty.channel.sctp.nio Modifier and Type Class Description class
NioSctpChannel
SctpChannel
implementation which use non-blocking mode and allows to read / writeSctpMessage
s to the underlyingSctpChannel
.class
NioSctpServerChannel
SctpServerChannel
implementation which use non-blocking mode to accept new connections and create theNioSctpChannel
for them. -
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
NioDomainSocketChannel
DuplexChannel
which uses NIO selector based implementation to support UNIX Domain Sockets.class
NioServerDomainSocketChannel
AServerChannel
implementation which uses NIO selector based implementation to support UNIX Domain Sockets.class
NioServerSocketChannel
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections.class
NioSocketChannel
SocketChannel
which uses NIO selector based implementation. -
Uses of AbstractNioChannel in io.netty.channel.udt.nio
Subclasses of AbstractNioChannel in io.netty.channel.udt.nio Modifier and Type Class Description class
NioUdtAcceptorChannel
Deprecated.The UDT transport is no longer maintained and will be removed.class
NioUdtByteAcceptorChannel
Deprecated.The UDT transport is no longer maintained and will be removed.class
NioUdtByteConnectorChannel
Deprecated.The UDT transport is no longer maintained and will be removed.class
NioUdtByteRendezvousChannel
Deprecated.The UDT transport is no longer maintained and will be removed.class
NioUdtMessageAcceptorChannel
Deprecated.The UDT transport is no longer maintained and will be removed.class
NioUdtMessageConnectorChannel
Deprecated.The UDT transport is no longer maintained and will be removed.class
NioUdtMessageRendezvousChannel
Deprecated.The UDT transport is no longer maintained and will be removed.
-