Uses of Interface
io.netty.channel.ServerChannel
Packages that use ServerChannel
Package
Description
The helper classes with fluent API which enable an easy implementation of
typical client side and server side channel initialization.
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
BSD specific transport.
A virtual transport that enables the communication between the two
parties in the same virtual machine.
Abstract SCTP socket interfaces which extend the core channel API.
NIO-based SCTP Channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based SCTP channel API implementation - recommended for
a small number of connections (< 1000).
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).
Unix specific transport.
-
Uses of ServerChannel in io.netty.bootstrap
Methods in io.netty.bootstrap with parameters of type ServerChannelModifier and TypeMethodDescriptionvoid
ChannelInitializerExtension.postInitializeServerListenerChannel
(ServerChannel channel) Called byServerBootstrap
after the initialization of the given server listener channel. -
Uses of ServerChannel in io.netty.channel
Classes in io.netty.channel that implement ServerChannel -
Uses of ServerChannel in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ServerChannelModifier and TypeClassDescriptionclass
final class
final class
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 ServerChannelModifier and TypeClassDescriptionclass
final class
final class
-
Uses of ServerChannel in io.netty.channel.local
Classes in io.netty.channel.local that implement ServerChannelModifier and TypeClassDescriptionclass
AServerChannel
for the local transport which allows in VM communication. -
Uses of ServerChannel in io.netty.channel.sctp
Subinterfaces of ServerChannel in io.netty.channel.sctpModifier and TypeInterfaceDescriptioninterface
A SCTP/IPServerChannel
which accepts incoming SCTP/IP associations. -
Uses of ServerChannel in io.netty.channel.sctp.nio
Classes in io.netty.channel.sctp.nio that implement ServerChannelModifier and TypeClassDescriptionclass
SctpServerChannel
implementation which use non-blocking mode to accept new connections and create theNioSctpChannel
for them. -
Uses of ServerChannel in io.netty.channel.sctp.oio
Classes in io.netty.channel.sctp.oio that implement ServerChannel -
Uses of ServerChannel in io.netty.channel.socket
Subinterfaces of ServerChannel in io.netty.channel.socketModifier and TypeInterfaceDescriptioninterface
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 ServerChannelModifier and TypeClassDescriptionfinal class
AServerChannel
implementation which uses NIO selector based implementation to support UNIX Domain Sockets.class
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections.Methods in io.netty.channel.socket.nio that return ServerChannel -
Uses of ServerChannel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement ServerChannelModifier and TypeClassDescriptionclass
Deprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of ServerChannel in io.netty.channel.unix
Subinterfaces of ServerChannel in io.netty.channel.unixModifier and TypeInterfaceDescriptioninterface
NioSctpServerChannel
.