Uses of Interface
io.netty.bootstrap.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
Fields in io.netty.bootstrap declared as ChannelFactory Modifier and Type Field Description private ChannelFactory<? extends C>AbstractBootstrap. channelFactoryMethods in io.netty.bootstrap that return ChannelFactory Modifier and Type Method Description (package private) ChannelFactory<? extends C>AbstractBootstrap. channelFactory()ChannelFactory<? extends C>AbstractBootstrapConfig. channelFactory()Returns the configuredChannelFactoryornullif non is configured yet.Methods in io.netty.bootstrap with parameters of type ChannelFactory Modifier and Type Method Description BAbstractBootstrap. channelFactory(ChannelFactory<? extends C> channelFactory)Deprecated. -
Uses of ChannelFactory in io.netty.channel
Subinterfaces of ChannelFactory in io.netty.channel Modifier and Type Interface Description interfaceChannelFactory<T extends Channel>Creates a newChannel.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.
-