Uses of Class
io.vertx.rxjava3.core.http.HttpClientBuilder
-
Packages that use HttpClientBuilder Package Description io.vertx.rxjava3.core io.vertx.rxjava3.core.http -
-
Uses of HttpClientBuilder in io.vertx.rxjava3.core
Methods in io.vertx.rxjava3.core that return HttpClientBuilder Modifier and Type Method Description HttpClientBuilder
Vertx. httpClientBuilder()
Provide a builder for , it can be used to configure advanced HTTP client settings like a redirect handler or a connection handler. -
Uses of HttpClientBuilder in io.vertx.rxjava3.core.http
Fields in io.vertx.rxjava3.core.http with type parameters of type HttpClientBuilder Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<HttpClientBuilder>
HttpClientBuilder. __TYPE_ARG
Methods in io.vertx.rxjava3.core.http that return HttpClientBuilder Modifier and Type Method Description static HttpClientBuilder
HttpClientBuilder. newInstance(HttpClientBuilder arg)
HttpClientBuilder
HttpClientBuilder. with(HttpClientOptions options)
Configure the client options.HttpClientBuilder
HttpClientBuilder. with(PoolOptions options)
Configure the client with the given pooloptions
.HttpClientBuilder
HttpClientBuilder. withAddressResolver(AddressResolver resolver)
Configure the client to use a specific address resolver.HttpClientBuilder
HttpClientBuilder. withConnectHandler(Handler<HttpConnection> handler)
Set a connection handler for the client.HttpClientBuilder
HttpClientBuilder. withLoadBalancer(LoadBalancer loadBalancer)
Configure the client to use a load balancer.HttpClientBuilder
HttpClientBuilder. withRedirectHandler(java.util.function.Function<HttpClientResponse,Single<RequestOptions>> handler)
Set a redirect handler for the http client.
-