Uses of Class
io.vertx.rxjava.core.http.HttpClient
-
Packages that use HttpClient Package Description io.vertx.rxjava.core io.vertx.rxjava.core.http io.vertx.rxjava.ext.web.client io.vertx.rxjava.json.schema io.vertx.rxjava.servicediscovery.types -
-
Uses of HttpClient in io.vertx.rxjava.core
Methods in io.vertx.rxjava.core that return HttpClient Modifier and Type Method Description HttpClient
Vertx. createHttpClient()
Create a HTTP/HTTPS client using default optionsHttpClient
Vertx. createHttpClient(HttpClientOptions clientOptions)
Create a HTTP/HTTPS client using the specified client optionsHttpClient
Vertx. createHttpClient(HttpClientOptions clientOptions, PoolOptions poolOptions)
Create a HTTP/HTTPS client using the specified client and pool optionsHttpClient
Vertx. createHttpClient(PoolOptions poolOptions)
Create a HTTP/HTTPS client using the specified pool options -
Uses of HttpClient in io.vertx.rxjava.core.http
Fields in io.vertx.rxjava.core.http with type parameters of type HttpClient Modifier and Type Field Description static TypeArg<HttpClient>
HttpClient. __TYPE_ARG
Methods in io.vertx.rxjava.core.http that return HttpClient Modifier and Type Method Description HttpClient
HttpClientBuilder. build()
Build and return the client.HttpClient
HttpClient. connectionHandler(Handler<HttpConnection> handler)
Deprecated.static HttpClient
HttpClient. newInstance(HttpClient arg)
HttpClient
HttpClient. redirectHandler(Function<HttpClientResponse,Future<RequestOptions>> handler)
Deprecated. -
Uses of HttpClient in io.vertx.rxjava.ext.web.client
Methods in io.vertx.rxjava.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.rxjava.json.schema
Methods in io.vertx.rxjava.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.rxjava.servicediscovery.types
Methods in io.vertx.rxjava.servicediscovery.types that return types with arguments of type HttpClient Modifier and Type Method Description static rx.Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static rx.Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static rx.Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static rx.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.rxjava.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 .
-