Uses of Interface
io.netty.bootstrap.ChannelFactory
Packages that use ChannelFactory
Package
Description
The helper classes with fluent API which enable an easy implementation of
typical client side and server side channel initialization.
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 ChannelFactoryModifier and TypeFieldDescriptionprivate ChannelFactory
<? extends C> AbstractBootstrap.channelFactory
Methods in io.netty.bootstrap that return ChannelFactoryModifier and TypeMethodDescription(package private) final ChannelFactory
<? extends C> AbstractBootstrap.channelFactory()
final ChannelFactory
<? extends C> AbstractBootstrapConfig.channelFactory()
Returns the configuredChannelFactory
ornull
if non is configured yet.Methods in io.netty.bootstrap with parameters of type ChannelFactoryModifier and TypeMethodDescriptionAbstractBootstrap.channelFactory
(ChannelFactory<? extends C> channelFactory) Deprecated. -
Uses of ChannelFactory in io.netty.channel
Subinterfaces of ChannelFactory in io.netty.channelModifier and TypeInterfaceDescriptioninterface
ChannelFactory<T extends Channel>
Creates a newChannel
.Classes in io.netty.channel that implement ChannelFactoryModifier and TypeClassDescriptionclass
ReflectiveChannelFactory<T extends Channel>
AChannelFactory
that instantiates a newChannel
by invoking its default constructor reflectively.
AbstractBootstrap.channelFactory(io.netty.channel.ChannelFactory)
instead.