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.io.netty.channel.udt.nio UDT Transport for NIO Channels. -
-
Uses of ChannelFactory in io.netty.bootstrap
Methods in io.netty.bootstrap that return ChannelFactory Modifier and Type Method Description ChannelFactory<? extends C>
AbstractBootstrapConfig. channelFactory()
Returns the configuredChannelFactory
ornull
if non is configured yet.Methods in io.netty.bootstrap with parameters of type ChannelFactory Modifier and Type Method Description B
AbstractBootstrap. 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 interface
ChannelFactory<T extends Channel>
Creates a newChannel
.Classes in io.netty.channel that implement ChannelFactory Modifier and Type Class Description class
ReflectiveChannelFactory<T extends Channel>
AChannelFactory
that instantiates a newChannel
by invoking its default constructor reflectively. -
Uses of ChannelFactory in io.netty.channel.udt.nio
Classes in io.netty.channel.udt.nio that implement ChannelFactory Modifier and Type Class Description class
NioUdtProvider<T extends UdtChannel>
Deprecated.The UDT transport is no longer maintained and will be removed.
-