Uses of Interface
io.netty.channel.socket.DatagramChannel
-
Packages that use DatagramChannel 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 DatagramChannel in io.netty.channel.socket
Constructors in io.netty.channel.socket with parameters of type DatagramChannel Constructor Description DefaultDatagramChannelConfig(DatagramChannel channel, DatagramSocket javaSocket)Creates a new instance. -
Uses of DatagramChannel in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement DatagramChannel Modifier and Type Class Description classNioDatagramChannelAn NIO datagramChannelthat sends and receives anAddressedEnvelope. -
Uses of DatagramChannel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement DatagramChannel Modifier and Type Class Description classOioDatagramChannelDeprecated.use NIO / EPOLL / KQUEUE transport.
-