Uses of Interface
io.netty.channel.socket.DuplexChannel
- 
Packages that use DuplexChannel Package Description 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.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).io.netty.channel.unix Unix specific transport.io.netty.channel.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls.io.netty.handler.codec.quic QUIC implementation - 
- 
Uses of DuplexChannel in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement DuplexChannel Modifier and Type Class Description classAbstractEpollStreamChannelclassEpollDomainSocketChannelclassEpollSocketChannelSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. - 
Uses of DuplexChannel in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement DuplexChannel Modifier and Type Class Description classAbstractKQueueStreamChannelclassKQueueDomainSocketChannelclassKQueueSocketChannel - 
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. - 
Uses of DuplexChannel in io.netty.channel.unix
Subinterfaces of DuplexChannel in io.netty.channel.unix Modifier and Type Interface Description interfaceDomainSocketChannelAUnixChannelthat supports communication via Unix Domain Socket. - 
Uses of DuplexChannel in io.netty.channel.uring
Classes in io.netty.channel.uring that implement DuplexChannel Modifier and Type Class Description classIoUringDomainSocketChannelDomainSocketChannelimplementation that uses linux io_uringclassIoUringSocketChannel - 
Uses of DuplexChannel in io.netty.handler.codec.quic
Subinterfaces of DuplexChannel in io.netty.handler.codec.quic Modifier and Type Interface Description interfaceQuicStreamChannelA QUIC stream. 
 -