Uses of Interface
io.netty.channel.ServerChannel
-
Packages that use ServerChannel Package Description io.netty.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.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.sctp Abstract SCTP socket interfaces which extend the core channel API.io.netty.channel.sctp.nio NIO-based SCTP Channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.sctp.oio Old blocking I/O based SCTP channel API implementation - recommended for a small number of connections (< 1000).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.udt UDT Transport.io.netty.channel.udt.nio UDT Transport for NIO Channels.io.netty.channel.unix Unix specific transport.io.netty.channel.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls. -
-
Uses of ServerChannel in io.netty.bootstrap
Methods in io.netty.bootstrap with parameters of type ServerChannel Modifier and Type Method Description void
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 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.sctp
Subinterfaces of ServerChannel in io.netty.channel.sctp Modifier and Type Interface Description interface
SctpServerChannel
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 ServerChannel Modifier and Type Class Description class
NioSctpServerChannel
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 Modifier and Type Class Description class
OioSctpServerChannel
Deprecated.useNioSctpServerChannel
. -
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
NioServerDomainSocketChannel
AServerChannel
implementation which uses NIO selector based implementation to support UNIX Domain Sockets.class
NioServerSocketChannel
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections.Methods in io.netty.channel.socket.nio that return ServerChannel Modifier and Type Method Description ServerChannel
NioDomainSocketChannel. parent()
-
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.udt
Subinterfaces of ServerChannel in io.netty.channel.udt Modifier and Type Interface Description interface
UdtServerChannel
Deprecated.The UDT transport is no longer maintained and will be removed. -
Uses of ServerChannel in io.netty.channel.udt.nio
Classes in io.netty.channel.udt.nio that implement ServerChannel Modifier and Type Class Description class
NioUdtAcceptorChannel
Deprecated.The UDT transport is no longer maintained and will be removed.class
NioUdtByteAcceptorChannel
Deprecated.The UDT transport is no longer maintained and will be removed.class
NioUdtMessageAcceptorChannel
Deprecated.The UDT transport is no longer maintained and will be removed. -
Uses of ServerChannel in io.netty.channel.unix
Subinterfaces of ServerChannel in io.netty.channel.unix Modifier and Type Interface Description interface
ServerDomainSocketChannel
-
Uses of ServerChannel in io.netty.channel.uring
Classes in io.netty.channel.uring that implement ServerChannel Modifier and Type Class Description class
IoUringServerSocketChannel
-