Uses of Interface
io.vertx.rxjava3.core.http.HttpClient
-
Packages that use HttpClient Package Description io.vertx.rxjava3.core.http io.vertx.rxjava3.ext.web.client io.vertx.rxjava3.grpc.client io.vertx.rxjava3.httpproxy io.vertx.rxjava3.servicediscovery.types -
-
Uses of HttpClient in io.vertx.rxjava3.core.http
Classes in io.vertx.rxjava3.core.http that implement HttpClient Modifier and Type Class Description class
HttpClientAgent
An asynchronous HTTP client.class
HttpClientConnection
Represents an HTTP client connection.Methods in io.vertx.rxjava3.core.http that return HttpClient Modifier and Type Method Description static HttpClient
HttpClient. newInstance(HttpClient arg)
-
Uses of HttpClient in io.vertx.rxjava3.ext.web.client
Methods in io.vertx.rxjava3.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.rxjava3.grpc.client
Methods in io.vertx.rxjava3.grpc.client with parameters of type HttpClient Modifier and Type Method Description static GrpcClient
GrpcClient. client(Vertx vertx, HttpClient client)
Create a client wrapping an existing . -
Uses of HttpClient in io.vertx.rxjava3.httpproxy
Methods in io.vertx.rxjava3.httpproxy with parameters of type HttpClient Modifier and Type Method Description static HttpProxy
HttpProxy. reverseProxy(ProxyOptions options, HttpClient client)
Create a newHttpProxy
instance.static HttpProxy
HttpProxy. reverseProxy(HttpClient client)
Create a newHttpProxy
instance. -
Uses of HttpClient in io.vertx.rxjava3.servicediscovery.types
Methods in io.vertx.rxjava3.servicediscovery.types that return types with arguments of type HttpClient Modifier and Type Method Description static Single<HttpClient>
HttpEndpoint. getClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
HttpEndpoint. getClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
HttpEndpoint. getClient(ServiceDiscovery discovery, java.util.function.Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
HttpEndpoint. getClient(ServiceDiscovery discovery, java.util.function.Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, java.util.function.Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
HttpEndpoint. rxGetClient(ServiceDiscovery discovery, java.util.function.Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .
-