Uses of Interface
io.netty.channel.ServerChannel
-
Packages that use ServerChannel Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.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.local A virtual transport that enables the communication between the two parties in the same virtual machine.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.unix Unix specific transport. -
-
Uses of ServerChannel in io.netty.channel
Classes in io.netty.channel that implement ServerChannel Modifier and Type Class Description class
AbstractServerChannel
A skeletal server-sideChannel
implementation. -
Uses of ServerChannel in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ServerChannel Modifier and Type Class Description class
AbstractEpollServerChannel
class
EpollServerDomainSocketChannel
class
EpollServerSocketChannel
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of ServerChannel in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement ServerChannel Modifier and Type Class Description class
AbstractKQueueServerChannel
class
KQueueServerDomainSocketChannel
class
KQueueServerSocketChannel
-
Uses of ServerChannel in io.netty.channel.local
Classes in io.netty.channel.local that implement ServerChannel Modifier and Type Class Description class
LocalServerChannel
AServerChannel
for the local transport which allows in VM communication. -
Uses of ServerChannel in io.netty.channel.socket
Subinterfaces of ServerChannel in io.netty.channel.socket Modifier and Type Interface Description interface
ServerSocketChannel
A TCP/IPServerChannel
which accepts incoming TCP/IP connections. -
Uses of ServerChannel in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement ServerChannel Modifier and Type Class Description class
NioServerSocketChannel
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections. -
Uses of ServerChannel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement ServerChannel Modifier and Type Class Description class
OioServerSocketChannel
Deprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of ServerChannel in io.netty.channel.unix
Subinterfaces of ServerChannel in io.netty.channel.unix Modifier and Type Interface Description interface
ServerDomainSocketChannel
-