Uses of Interface
io.netty.channel.socket.DuplexChannel
-
Packages that use DuplexChannel Package Description io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000). -
-
Uses of DuplexChannel in io.netty.channel.socket
Subinterfaces of DuplexChannel in io.netty.channel.socket Modifier and Type Interface Description interfaceSocketChannelA TCP/IP socketChannel. -
Uses of DuplexChannel in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement DuplexChannel Modifier and Type Class Description classNioDomainSocketChannelDuplexChannelwhich uses NIO selector based implementation to support UNIX Domain Sockets.classNioSocketChannelSocketChannelwhich uses NIO selector based implementation. -
Uses of DuplexChannel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement DuplexChannel Modifier and Type Class Description classOioSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.
-