Uses of Interface
io.netty.channel.socket.ServerSocketChannel
-
Packages that use ServerSocketChannel 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.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls. -
-
Uses of ServerSocketChannel in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ServerSocketChannel Modifier and Type Class Description classEpollServerSocketChannelServerSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.Methods in io.netty.channel.epoll that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannelEpollSocketChannel. parent() -
Uses of ServerSocketChannel in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement ServerSocketChannel Modifier and Type Class Description classKQueueServerSocketChannelMethods in io.netty.channel.kqueue that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannelKQueueSocketChannel. parent() -
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. -
Uses of ServerSocketChannel in io.netty.channel.uring
Classes in io.netty.channel.uring that implement ServerSocketChannel Modifier and Type Class Description classIoUringServerSocketChannelMethods in io.netty.channel.uring that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannelIoUringSocketChannel. parent()
-