Uses of Interface
io.netty5.channel.ServerChannelFactory
-
Packages that use ServerChannelFactory 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. -
-
Uses of ServerChannelFactory in io.netty5.bootstrap
Methods in io.netty5.bootstrap that return ServerChannelFactory Modifier and Type Method Description ServerChannelFactory<? extends ServerChannel>
ServerBootstrapConfig. channelFactory()
Methods in io.netty5.bootstrap with parameters of type ServerChannelFactory Modifier and Type Method Description ServerBootstrap
ServerBootstrap. channelFactory(ServerChannelFactory<? extends ServerChannel> channelFactory)
ServerChannelFactory
which is used to createChannel
instances from when callingAbstractBootstrap.bind()
. -
Uses of ServerChannelFactory in io.netty5.channel
Classes in io.netty5.channel that implement ServerChannelFactory Modifier and Type Class Description class
ReflectiveServerChannelFactory<T extends ServerChannel>
AChannelFactory
that instantiates a newServerChannel
by invoking its default constructor reflectively.
-