Uses of Class
io.vertx.mutiny.core.http.HttpClientRequest
Packages that use HttpClientRequest
-
Uses of HttpClientRequest in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type HttpClientRequestModifier and TypeFieldDescriptionstatic final TypeArg<HttpClientRequest>
HttpClientRequest.__TYPE_ARG
Methods in io.vertx.mutiny.core.http that return HttpClientRequestModifier and TypeMethodDescriptionHttpClientRequest.authority
(HostAndPort authority) HttpClientRequest.continueHandler
(Runnable handler) HttpClientRequest.drainHandler
(Runnable handler) HttpClientRequest.earlyHintsHandler
(Consumer<MultiMap> handler) HttpClientRequest.exceptionHandler
(Consumer<Throwable> handler) HttpClientRequest.idleTimeout
(long timeout) static HttpClientRequest
HttpClientRequest.newInstance
(io.vertx.core.http.HttpClientRequest arg) HttpClientRequest.pushHandler
(Consumer<HttpClientRequest> handler) HttpClientRequest.putHeader
(CharSequence name, CharSequence value) HttpClientRequest.putHeader
(CharSequence name, Iterable<CharSequence> values) HttpClientRequest.redirectHandler
(Function<HttpClientResponse, io.smallrye.mutiny.Uni<HttpClientRequest>> handler) HttpClientResponse.request()
HttpClient.requestAndAwait
(io.vertx.core.http.HttpMethod method, int port, String host, String requestURI) Blocking variant ofHttpClient.request(HttpMethod,int,String,String)
.HttpClient.requestAndAwait
(io.vertx.core.http.HttpMethod method, String requestURI) Blocking variant ofHttpClient.request(HttpMethod,String)
.HttpClient.requestAndAwait
(io.vertx.core.http.HttpMethod method, String host, String requestURI) Blocking variant ofHttpClient.request(HttpMethod,String,String)
.HttpClient.requestAndAwait
(io.vertx.core.http.RequestOptions options) Blocking variant ofHttpClient.request(RequestOptions)
.HttpClientRequest.responseAndForget()
Variant ofresponse()
that ignores the result of the operation.HttpClientRequest.sendHeadAndForget()
Variant ofsendHead()
that ignores the result of the operation.HttpClientRequest.setChunked
(boolean chunked) HttpClientRequest.setFollowRedirects
(boolean followRedirects) Deprecated.HttpClientRequest.setMaxRedirects
(int maxRedirects) HttpClientRequest.setMethod
(io.vertx.core.http.HttpMethod method) HttpClientRequest.setPort
(int port) Deprecated.instead useauthority(HostAndPort)
HttpClientRequest.setStreamPriority
(io.vertx.core.http.StreamPriority streamPriority) HttpClientRequest.setTimeout
(long timeout) Deprecated.instead useidleTimeout(long)
HttpClientRequest.setWriteQueueMaxSize
(int maxSize) HttpClientRequest.traceOperation
(String op) HttpClientRequest.writeCustomFrame
(int type, int flags, Buffer payload) HttpClientRequest.writeCustomFrame
(HttpFrame frame) Methods in io.vertx.mutiny.core.http that return types with arguments of type HttpClientRequestModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<HttpClientRequest>
Create an HTTP request to send to the server at thehost
andport
.io.smallrye.mutiny.Uni<HttpClientRequest>
Create an HTTP request to send to the server at the default host and port.io.smallrye.mutiny.Uni<HttpClientRequest>
Create an HTTP request to send to the server at thehost
and 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 HttpClientRequestModifier and TypeMethodDescriptionHttpClientRequest.pushHandler
(Consumer<HttpClientRequest> handler) HttpClientRequest.redirectHandler
(Function<HttpClientResponse, io.smallrye.mutiny.Uni<HttpClientRequest>> handler) -
Uses of HttpClientRequest in io.vertx.mutiny.httpproxy
Methods in io.vertx.mutiny.httpproxy with parameters of type HttpClientRequestModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Void>
ProxyRequest.proxy
(HttpClientRequest request) Proxy this request to the origin server using the specifiedrequest
and then send the proxy response.ProxyRequest.proxyAndAwait
(HttpClientRequest request) Blocking variant ofProxyRequest.proxy(io.vertx.mutiny.core.http.HttpClientRequest)
.void
ProxyRequest.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
.ProxyRequest.sendAndAwait
(HttpClientRequest request) Blocking variant ofProxyRequest.send(io.vertx.mutiny.core.http.HttpClientRequest)
.void
ProxyRequest.sendAndForget
(HttpClientRequest request) Variant ofProxyRequest.send(io.vertx.mutiny.core.http.HttpClientRequest)
that ignores the result of the operation.
authority(HostAndPort)