Uses of Interface
io.netty.channel.socket.ServerSocketChannel
Packages that use ServerSocketChannel
Package
Description
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
BSD specific transport.
Abstract TCP and UDP socket interfaces which extend the core channel API.
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
-
Uses of ServerSocketChannel in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ServerSocketChannelModifier and TypeClassDescriptionfinal class
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.Methods in io.netty.channel.epoll that return ServerSocketChannel -
Uses of ServerSocketChannel in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement ServerSocketChannelMethods in io.netty.channel.kqueue that return ServerSocketChannel -
Uses of ServerSocketChannel in io.netty.channel.socket
Methods in io.netty.channel.socket that return ServerSocketChannelConstructors in io.netty.channel.socket with parameters of type ServerSocketChannelModifierConstructorDescriptionDefaultServerSocketChannelConfig
(ServerSocketChannel channel, ServerSocket javaSocket) Creates a new instance. -
Uses of ServerSocketChannel in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement ServerSocketChannelModifier and TypeClassDescriptionclass
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections.Methods in io.netty.channel.socket.nio that return ServerSocketChannel -
Uses of ServerSocketChannel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement ServerSocketChannelModifier and TypeClassDescriptionclass
Deprecated.use NIO / EPOLL / KQUEUE transport.Methods in io.netty.channel.socket.oio that return ServerSocketChannelConstructors in io.netty.channel.socket.oio with parameters of type ServerSocketChannelModifierConstructorDescriptionDefaultOioServerSocketChannelConfig
(ServerSocketChannel channel, ServerSocket javaSocket) Deprecated.