Uses of Interface
io.netty5.channel.ServerChannel
-
Packages that use ServerChannel Package Description io.netty5.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty5.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of ServerChannel in io.netty5.bootstrap
Methods in io.netty5.bootstrap that return types with arguments of type ServerChannel Modifier and Type Method Description ServerChannelFactory<? extends ServerChannel>
ServerBootstrapConfig. channelFactory()
Method parameters in io.netty5.bootstrap with type arguments of type ServerChannel Modifier and Type Method Description ServerBootstrap
ServerBootstrap. channel(Class<? extends ServerChannel> channelClass)
TheClass
which is used to createServerChannel
instances from.ServerBootstrap
ServerBootstrap. channelFactory(ServerChannelFactory<? extends ServerChannel> channelFactory)
ServerChannelFactory
which is used to createChannel
instances from when callingAbstractBootstrap.bind()
. -
Uses of ServerChannel in io.netty5.channel
Classes in io.netty5.channel with type parameters of type ServerChannel Modifier and Type Class Description class
ReflectiveServerChannelFactory<T extends ServerChannel>
AChannelFactory
that instantiates a newServerChannel
by invoking its default constructor reflectively.interface
ServerChannelFactory<T extends ServerChannel>
Creates a newServerChannel
.Classes in io.netty5.channel that implement ServerChannel Modifier and Type Class Description class
AbstractServerChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>
A skeletal server-sideChannel
implementation. -
Uses of ServerChannel in io.netty5.channel.epoll
Classes in io.netty5.channel.epoll that implement ServerChannel Modifier and Type Class Description class
EpollServerSocketChannel
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of ServerChannel in io.netty5.channel.kqueue
Classes in io.netty5.channel.kqueue that implement ServerChannel Modifier and Type Class Description class
KQueueServerSocketChannel
ServerSocketChannel
implementation that uses KQueue. -
Uses of ServerChannel in io.netty5.channel.local
Classes in io.netty5.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.netty5.channel.socket
Subinterfaces of ServerChannel in io.netty5.channel.socket Modifier and Type Interface Description interface
ServerSocketChannel
A SocketServerChannel
which accepts incoming Socket connections. -
Uses of ServerChannel in io.netty5.channel.socket.nio
Classes in io.netty5.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.
-