Uses of Interface
io.netty5.channel.socket.ServerSocketChannel
-
Packages that use ServerSocketChannel Package Description io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of ServerSocketChannel in io.netty5.channel.epoll
Classes in io.netty5.channel.epoll that implement ServerSocketChannel Modifier and Type Class Description class
EpollServerSocketChannel
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of ServerSocketChannel in io.netty5.channel.kqueue
Classes in io.netty5.channel.kqueue that implement ServerSocketChannel Modifier and Type Class Description class
KQueueServerSocketChannel
ServerSocketChannel
implementation that uses KQueue. -
Uses of ServerSocketChannel in io.netty5.channel.socket
Methods in io.netty5.channel.socket that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannel
SocketChannel. parent()
-
Uses of ServerSocketChannel in io.netty5.channel.socket.nio
Classes in io.netty5.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.
-