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).
UDT Transport.
UDT Transport for NIO Channels.
Unix specific transport.
io_uring is a high I/O performance scalable interface for fully
asynchronous Linux syscalls.
-
Uses of ServerChannel in io.netty.bootstrap
Subclasses with type arguments of type ServerChannel in io.netty.bootstrapModifier and TypeClassDescriptionclassBootstrapsub-class which allows easy bootstrap ofServerChannelfinal classExposes the configuration of aServerBootstrapConfig.Methods in io.netty.bootstrap with parameters of type ServerChannelModifier and TypeMethodDescriptionvoidChannelInitializerExtension.postInitializeServerListenerChannel(ServerChannel channel) Called byServerBootstrapafter 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 TypeClassDescriptionclassfinal classfinal classServerSocketChannelimplementation 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 TypeClassDescriptionclassfinal classfinal class -
Uses of ServerChannel in io.netty.channel.local
Classes in io.netty.channel.local that implement ServerChannelModifier and TypeClassDescriptionclassAServerChannelfor 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 TypeInterfaceDescriptioninterfaceA SCTP/IPServerChannelwhich 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 TypeClassDescriptionclassSctpServerChannelimplementation which use non-blocking mode to accept new connections and create theNioSctpChannelfor 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 TypeInterfaceDescriptioninterfaceA TCP/IPServerChannelwhich 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 classAServerChannelimplementation which uses NIO selector based implementation to support UNIX Domain Sockets.classAServerSocketChannelimplementation 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 TypeClassDescriptionclassDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of ServerChannel in io.netty.channel.udt
Subinterfaces of ServerChannel in io.netty.channel.udtModifier and TypeInterfaceDescriptioninterfaceDeprecated.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 ServerChannelModifier and TypeClassDescriptionclassDeprecated.The UDT transport is no longer maintained and will be removed.classDeprecated.The UDT transport is no longer maintained and will be removed.classDeprecated.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.unixModifier and TypeInterfaceDescriptioninterface -
Uses of ServerChannel in io.netty.channel.uring
Classes in io.netty.channel.uring that implement ServerChannelModifier and TypeClassDescriptionfinal classfinal class
NioSctpServerChannel.