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.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 ServerBootstrapServerBootstrap. channel(Class<? extends ServerChannel> channelClass)TheClasswhich is used to createServerChannelinstances from.ServerBootstrapServerBootstrap. channelFactory(ServerChannelFactory<? extends ServerChannel> channelFactory)ServerChannelFactorywhich is used to createChannelinstances 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 classReflectiveServerChannelFactory<T extends ServerChannel>AChannelFactorythat instantiates a newServerChannelby invoking its default constructor reflectively.interfaceServerChannelFactory<T extends ServerChannel>Creates a newServerChannel.Classes in io.netty5.channel that implement ServerChannel Modifier and Type Class Description classAbstractServerChannel<P extends Channel,L extends SocketAddress,R extends SocketAddress>A skeletalServerChannelimplementation. -
Uses of ServerChannel in io.netty5.channel.local
Classes in io.netty5.channel.local that implement ServerChannel Modifier and Type Class Description classLocalServerChannelAServerChannelfor 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 interfaceServerSocketChannelA SocketServerChannelwhich 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 classNioServerSocketChannelAServerSocketChannelimplementation which uses NIO selector based implementation to accept new connections.
-