Uses of Class
io.netty.bootstrap.Bootstrap
-
Packages that use Bootstrap 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.pool Implementations and API forChannel
pools.io.netty.resolver.dns An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously, which supports the queries of an arbitrary DNS record type as well. -
-
Uses of Bootstrap in io.netty.bootstrap
Methods in io.netty.bootstrap that return Bootstrap Modifier and Type Method Description Bootstrap
Bootstrap. clone()
Bootstrap
Bootstrap. clone(EventLoopGroup group)
Returns a deep clone of this bootstrap which has the identical configuration except that it uses the givenEventLoopGroup
.Bootstrap
Bootstrap. disableResolver()
Disables address name resolution.Bootstrap
Bootstrap. remoteAddress(java.lang.String inetHost, int inetPort)
Bootstrap
Bootstrap. remoteAddress(java.net.InetAddress inetHost, int inetPort)
Bootstrap
Bootstrap. remoteAddress(java.net.SocketAddress remoteAddress)
TheSocketAddress
to connect to once theconnect()
method is called.Bootstrap
Bootstrap. resolver(AddressResolverGroup<?> resolver)
Sets theNameResolver
which will resolve the address of the unresolved named address.Bootstrap
Bootstrap. validate()
Constructors in io.netty.bootstrap with parameters of type Bootstrap Constructor Description Bootstrap(Bootstrap bootstrap)
BootstrapConfig(Bootstrap bootstrap)
-
Uses of Bootstrap in io.netty.channel.pool
Fields in io.netty.channel.pool declared as Bootstrap Modifier and Type Field Description private Bootstrap
SimpleChannelPool. bootstrap
Methods in io.netty.channel.pool that return Bootstrap Modifier and Type Method Description protected Bootstrap
SimpleChannelPool. bootstrap()
Returns theBootstrap
this pool will use to open new connections.Methods in io.netty.channel.pool with parameters of type Bootstrap Modifier and Type Method Description protected ChannelFuture
SimpleChannelPool. connectChannel(Bootstrap bs)
Bootstrap a newChannel
.Constructors in io.netty.channel.pool with parameters of type Bootstrap Constructor Description FixedChannelPool(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. -
Uses of Bootstrap in io.netty.resolver.dns
Fields in io.netty.resolver.dns declared as Bootstrap Modifier and Type Field Description private Bootstrap
DnsNameResolver. socketBootstrap
private Bootstrap
DnsQueryContext. socketBootstrap
Constructors in io.netty.resolver.dns with parameters of type Bootstrap Constructor Description DatagramDnsQueryContext(Channel channel, Future<? extends Channel> channelReadyFuture, java.net.InetSocketAddress nameServerAddr, DnsQueryContextManager queryContextManager, int maxPayLoadSize, boolean recursionDesired, long queryTimeoutMillis, DnsQuestion question, DnsRecord[] additionals, Promise<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>> promise, Bootstrap socketBootstrap, boolean retryWithTcpOnTimeout)
DnsQueryContext(Channel channel, Future<? extends Channel> channelReadyFuture, java.net.InetSocketAddress nameServerAddr, DnsQueryContextManager queryContextManager, int maxPayLoadSize, boolean recursionDesired, long queryTimeoutMillis, DnsQuestion question, DnsRecord[] additionals, Promise<AddressedEnvelope<DnsResponse,java.net.InetSocketAddress>> promise, Bootstrap socketBootstrap, boolean retryWithTcpOnTimeout)
-