Uses of Class
io.netty.bootstrap.Bootstrap
Packages that use Bootstrap
Package
Description
The helper classes with fluent API which enable an easy implementation of
typical client side and server side channel initialization.
Implementations and API for
Channel pools.-
Uses of Bootstrap in io.netty.bootstrap
Subclasses with type arguments of type Bootstrap in io.netty.bootstrapMethods in io.netty.bootstrap that return BootstrapModifier and TypeMethodDescriptionBootstrap.clone()Bootstrap.clone(EventLoopGroup group) Returns a deep clone of this bootstrap which has the identical configuration except that it uses the givenEventLoopGroup.Bootstrap.disableResolver()Disables address name resolution.Bootstrap.remoteAddress(String inetHost, int inetPort) Bootstrap.remoteAddress(InetAddress inetHost, int inetPort) Bootstrap.remoteAddress(SocketAddress remoteAddress) TheSocketAddressto connect to once theBootstrap.connect()method is called.Bootstrap.resolver(AddressResolverGroup<?> resolver) Sets theNameResolverwhich will resolve the address of the unresolved named address.Bootstrap.validate() -
Uses of Bootstrap in io.netty.channel.pool
Methods in io.netty.channel.pool that return BootstrapModifier and TypeMethodDescriptionprotected BootstrapSimpleChannelPool.bootstrap()Returns theBootstrapthis pool will use to open new connections.Methods in io.netty.channel.pool with parameters of type BootstrapModifier and TypeMethodDescriptionprotected ChannelFutureSimpleChannelPool.connectChannel(Bootstrap bs) Bootstrap a newChannel.Constructors in io.netty.channel.pool with parameters of type BootstrapModifierConstructorDescriptionFixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, int maxConnections) Creates a new instance using theChannelHealthChecker.ACTIVE.FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, int maxConnections, int maxPendingAcquires) Creates a new instance using theChannelHealthChecker.ACTIVE.FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, FixedChannelPool.AcquireTimeoutAction action, long acquireTimeoutMillis, int maxConnections, int maxPendingAcquires) Creates a new instance.FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, FixedChannelPool.AcquireTimeoutAction action, long acquireTimeoutMillis, int maxConnections, int maxPendingAcquires, boolean releaseHealthCheck) Creates a new instance.FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, FixedChannelPool.AcquireTimeoutAction action, long acquireTimeoutMillis, int maxConnections, int maxPendingAcquires, boolean releaseHealthCheck, boolean lastRecentUsed) Creates a new instance.SimpleChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler) Creates a new instance using theChannelHealthChecker.ACTIVE.SimpleChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck) Creates a new instance.SimpleChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, boolean releaseHealthCheck) Creates a new instance.SimpleChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, ChannelHealthChecker healthCheck, boolean releaseHealthCheck, boolean lastRecentUsed) Creates a new instance.