Uses of Interface
io.netty.channel.socket.ServerSocketChannel
-
Packages that use ServerSocketChannel 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 ServerSocketChannel in io.netty.channel.socket
Methods in io.netty.channel.socket that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannelSocketChannel. parent()Constructors in io.netty.channel.socket with parameters of type ServerSocketChannel Constructor Description DefaultServerSocketChannelConfig(ServerSocketChannel channel, java.net.ServerSocket javaSocket)Creates a new instance. -
Uses of ServerSocketChannel in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement ServerSocketChannel Modifier and Type Class Description classNioServerSocketChannelAServerSocketChannelimplementation which uses NIO selector based implementation to accept new connections.Methods in io.netty.channel.socket.nio that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannelNioSocketChannel. parent() -
Uses of ServerSocketChannel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement ServerSocketChannel Modifier and Type Class Description classOioServerSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.Methods in io.netty.channel.socket.oio that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannelOioSocketChannel. parent()Deprecated.Constructors in io.netty.channel.socket.oio with parameters of type ServerSocketChannel Constructor Description DefaultOioServerSocketChannelConfig(ServerSocketChannel channel, java.net.ServerSocket javaSocket)Deprecated.
-