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. -
-
Uses of DuplexChannel in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement DuplexChannel Modifier and Type Class Description class
AbstractEpollStreamChannel
class
EpollDomainSocketChannel
class
EpollSocketChannel
SocketChannel
implementation 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 class
AbstractKQueueStreamChannel
class
KQueueDomainSocketChannel
class
KQueueSocketChannel
-
Uses of DuplexChannel in io.netty.channel.socket
Subinterfaces of DuplexChannel in io.netty.channel.socket Modifier and Type Interface Description interface
SocketChannel
A 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 class
NioSocketChannel
SocketChannel
which 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 class
OioSocketChannel
Deprecated.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 interface
DomainSocketChannel
AUnixChannel
that supports communication via Unix Domain Socket.
-