Uses of Class
io.vertx.reactivex.core.http.HttpClient
-
Packages that use HttpClient Package Description io.vertx.reactivex.core io.vertx.reactivex.core.http io.vertx.reactivex.ext.web.client io.vertx.reactivex.json.schema io.vertx.reactivex.servicediscovery.types -
-
Uses of HttpClient in io.vertx.reactivex.core
Methods in io.vertx.reactivex.core that return HttpClient Modifier and Type Method Description HttpClient
Vertx. createHttpClient()
Create a HTTP/HTTPS client using default optionsHttpClient
Vertx. createHttpClient(HttpClientOptions options)
Create a HTTP/HTTPS client using the specified options -
Uses of HttpClient in io.vertx.reactivex.core.http
Fields in io.vertx.reactivex.core.http with type parameters of type HttpClient Modifier and Type Field Description static TypeArg<HttpClient>
HttpClient. __TYPE_ARG
Methods in io.vertx.reactivex.core.http that return HttpClient Modifier and Type Method Description HttpClient
HttpClient. connectionHandler(Handler<HttpConnection> handler)
Set a connection handler for the client.static HttpClient
HttpClient. newInstance(HttpClient arg)
HttpClient
HttpClient. redirectHandler(io.reactivex.functions.Function<HttpClientResponse,io.reactivex.Single<RequestOptions>> handler)
Set a redirect handler for the http client.HttpClient
HttpClient. redirectHandler(Function<HttpClientResponse,Future<RequestOptions>> handler)
Set a redirect handler for the http client. -
Uses of HttpClient in io.vertx.reactivex.ext.web.client
Methods in io.vertx.reactivex.ext.web.client with parameters of type HttpClient Modifier and Type Method Description static WebClient
WebClient. wrap(HttpClient httpClient)
Wrap anhttpClient
with a web client and default options.static WebClient
WebClient. wrap(HttpClient httpClient, WebClientOptions options)
Wrap anhttpClient
with a web client and default options. -
Uses of HttpClient in io.vertx.reactivex.json.schema
Methods in io.vertx.reactivex.json.schema with parameters of type HttpClient Modifier and Type Method Description static SchemaRouter
SchemaRouter. create(Vertx vertx, HttpClient client, FileSystem fs, SchemaRouterOptions schemaRouterOptions)
Deprecated. -
Uses of HttpClient in io.vertx.reactivex.servicediscovery.types
Methods in io.vertx.reactivex.servicediscovery.types that return types with arguments of type HttpClient Modifier and Type Method Description static io.reactivex.Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static io.reactivex.Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static io.reactivex.Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static io.reactivex.Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .Method parameters in io.vertx.reactivex.servicediscovery.types with type arguments of type HttpClient Modifier and Type Method Description static void
HttpEndpoint. getClient(ServiceDiscovery discovery, JsonObject filter, Handler<AsyncResult<HttpClient>> resultHandler)
Convenient method that looks for a HTTP endpoint and provides the configured .static void
HttpEndpoint. getClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf, Handler<AsyncResult<HttpClient>> resultHandler)
Convenient method that looks for a HTTP endpoint and provides the configured .static void
HttpEndpoint. getClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, Handler<AsyncResult<HttpClient>> resultHandler)
Convenient method that looks for a HTTP endpoint and provides the configured .static void
HttpEndpoint. getClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf, Handler<AsyncResult<HttpClient>> resultHandler)
Convenient method that looks for a HTTP endpoint and provides the configured .
-