Uses of Class
io.vertx.mutiny.core.http.HttpClientRequest
- 
Packages that use HttpClientRequest Package Description io.vertx.mutiny.core.http io.vertx.mutiny.httpproxy  - 
- 
Uses of HttpClientRequest in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type HttpClientRequest Modifier and Type Field Description static TypeArg<HttpClientRequest>HttpClientRequest. __TYPE_ARGMethods in io.vertx.mutiny.core.http that return HttpClientRequest Modifier and Type Method Description HttpClientRequestHttpClientRequest. authority(HostAndPort authority)HttpClientRequestHttpClientRequest. continueHandler(Runnable handler)HttpClientRequestHttpClientRequest. drainHandler(Runnable handler)HttpClientRequestHttpClientRequest. earlyHintsHandler(Consumer<MultiMap> handler)HttpClientRequestHttpClientRequest. exceptionHandler(Consumer<Throwable> handler)static HttpClientRequestHttpClientRequest. newInstance(io.vertx.core.http.HttpClientRequest arg)HttpClientRequestHttpClientRequest. pushHandler(Consumer<HttpClientRequest> handler)HttpClientRequestHttpClientRequest. putHeader(CharSequence name, CharSequence value)HttpClientRequestHttpClientRequest. putHeader(CharSequence name, Iterable<CharSequence> values)HttpClientRequestHttpClientRequest. putHeader(String name, Iterable<String> values)HttpClientRequestHttpClientRequest. putHeader(String name, String value)HttpClientRequestHttpClientResponse. request()HttpClientRequestHttpClient. requestAndAwait(io.vertx.core.http.HttpMethod method, int port, String host, String requestURI)Blocking variant ofHttpClient.request(HttpMethod,int,String,String).HttpClientRequestHttpClient. requestAndAwait(io.vertx.core.http.HttpMethod method, String requestURI)Blocking variant ofHttpClient.request(HttpMethod,String).HttpClientRequestHttpClient. requestAndAwait(io.vertx.core.http.HttpMethod method, String host, String requestURI)Blocking variant ofHttpClient.request(HttpMethod,String,String).HttpClientRequestHttpClient. requestAndAwait(io.vertx.core.http.RequestOptions options)Blocking variant ofHttpClient.request(RequestOptions).HttpClientRequestHttpClientRequest. responseAndForget()Variant ofresponse()that ignores the result of the operation.HttpClientRequestHttpClientRequest. sendHeadAndForget()Variant ofsendHead()that ignores the result of the operation.HttpClientRequestHttpClientRequest. setChunked(boolean chunked)HttpClientRequestHttpClientRequest. setFollowRedirects(boolean followRedirects)HttpClientRequestHttpClientRequest. setHost(String host)Deprecated.instead useauthority(HostAndPort)HttpClientRequestHttpClientRequest. setMaxRedirects(int maxRedirects)HttpClientRequestHttpClientRequest. setMethod(io.vertx.core.http.HttpMethod method)HttpClientRequestHttpClientRequest. setPort(int port)Deprecated.instead useauthority(HostAndPort)HttpClientRequestHttpClientRequest. setStreamPriority(io.vertx.core.http.StreamPriority streamPriority)HttpClientRequestHttpClientRequest. setTimeout(long timeoutMs)HttpClientRequestHttpClientRequest. setURI(String uri)HttpClientRequestHttpClientRequest. setWriteQueueMaxSize(int maxSize)HttpClientRequestHttpClientRequest. writeCustomFrame(int type, int flags, Buffer payload)HttpClientRequestHttpClientRequest. writeCustomFrame(HttpFrame frame)Methods in io.vertx.mutiny.core.http that return types with arguments of type HttpClientRequest Modifier and Type Method Description io.smallrye.mutiny.Uni<HttpClientRequest>HttpClient. request(io.vertx.core.http.HttpMethod method, int port, String host, String requestURI)Create an HTTP request to send to the server at thehostandport.io.smallrye.mutiny.Uni<HttpClientRequest>HttpClient. request(io.vertx.core.http.HttpMethod method, String requestURI)Create an HTTP request to send to the server at the default host and port.io.smallrye.mutiny.Uni<HttpClientRequest>HttpClient. request(io.vertx.core.http.HttpMethod method, String host, String requestURI)Create an HTTP request to send to the server at thehostand default port.io.smallrye.mutiny.Uni<HttpClientRequest>HttpClient. request(io.vertx.core.http.RequestOptions options)Create an HTTP request to send to the server.Method parameters in io.vertx.mutiny.core.http with type arguments of type HttpClientRequest Modifier and Type Method Description HttpClientRequestHttpClientRequest. pushHandler(Consumer<HttpClientRequest> handler) - 
Uses of HttpClientRequest in io.vertx.mutiny.httpproxy
Methods in io.vertx.mutiny.httpproxy with parameters of type HttpClientRequest Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>ProxyRequest. proxy(HttpClientRequest request)Proxy this request to the origin server using the specifiedrequestand then send the proxy response.VoidProxyRequest. proxyAndAwait(HttpClientRequest request)Blocking variant ofProxyRequest.proxy(io.vertx.mutiny.core.http.HttpClientRequest).voidProxyRequest. proxyAndForget(HttpClientRequest request)Variant ofProxyRequest.proxy(io.vertx.mutiny.core.http.HttpClientRequest)that ignores the result of the operation.io.smallrye.mutiny.Uni<ProxyResponse>ProxyRequest. send(HttpClientRequest request)Send this request to the origin server using the specifiedrequest.ProxyResponseProxyRequest. sendAndAwait(HttpClientRequest request)Blocking variant ofProxyRequest.send(io.vertx.mutiny.core.http.HttpClientRequest).voidProxyRequest. sendAndForget(HttpClientRequest request)Variant ofProxyRequest.send(io.vertx.mutiny.core.http.HttpClientRequest)that ignores the result of the operation. 
 -