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 class
EpollServerSocketChannel
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.Methods in io.netty.channel.epoll that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannel
EpollSocketChannel. parent()
-
Uses of ServerSocketChannel in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement ServerSocketChannel Modifier and Type Class Description class
KQueueServerSocketChannel
Methods in io.netty.channel.kqueue that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannel
KQueueSocketChannel. parent()
-
Uses of ServerSocketChannel in io.netty.channel.socket
Methods in io.netty.channel.socket that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannel
SocketChannel. 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 class
NioServerSocketChannel
AServerSocketChannel
implementation 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 ServerSocketChannel
NioSocketChannel. 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 class
OioServerSocketChannel
Deprecated.use NIO / EPOLL / KQUEUE transport.Methods in io.netty.channel.socket.oio that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannel
OioSocketChannel. 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 class
IoUringServerSocketChannel
Methods in io.netty.channel.uring that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannel
IoUringSocketChannel. parent()
-