Uses of Interface
io.netty.channel.socket.SocketChannel
-
Packages that use SocketChannel 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 SocketChannel in io.netty.channel.socket
Constructors in io.netty.channel.socket with parameters of type SocketChannel Constructor Description DefaultSocketChannelConfig(SocketChannel channel, Socket javaSocket)Creates a new instance. -
Uses of SocketChannel in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement SocketChannel Modifier and Type Class Description classNioSocketChannelSocketChannelwhich uses NIO selector based implementation. -
Uses of SocketChannel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement SocketChannel Modifier and Type Class Description classOioSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.Constructors in io.netty.channel.socket.oio with parameters of type SocketChannel Constructor Description DefaultOioSocketChannelConfig(SocketChannel channel, Socket javaSocket)Deprecated.
-