Uses of Interface
io.netty.channel.ChannelFactory
-
Packages that use ChannelFactory Package Description io.netty.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel. -
-
Uses of ChannelFactory in io.netty.bootstrap
Methods in io.netty.bootstrap with parameters of type ChannelFactory Modifier and Type Method Description BAbstractBootstrap. channelFactory(ChannelFactory<? extends C> channelFactory)ChannelFactorywhich is used to createChannelinstances from when callingAbstractBootstrap.bind(). -
Uses of ChannelFactory in io.netty.channel
Classes in io.netty.channel that implement ChannelFactory Modifier and Type Class Description classReflectiveChannelFactory<T extends Channel>AChannelFactorythat instantiates a newChannelby invoking its default constructor reflectively.
-