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 ServerBootstrapServerBootstrap. channelFactory(ServerChannelFactory<? extends ServerChannel> channelFactory)ServerChannelFactorywhich is used to createChannelinstances from when callingAbstractBootstrap.bind(). -
Uses of ServerChannelFactory in io.netty5.channel
Classes in io.netty5.channel that implement ServerChannelFactory Modifier and Type Class Description classReflectiveServerChannelFactory<T extends ServerChannel>AChannelFactorythat instantiates a newServerChannelby invoking its default constructor reflectively.
-