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_ARG
Methods in io.vertx.mutiny.core.http that return HttpClientRequest Modifier and Type Method Description HttpClientRequest
HttpClientRequest. authority(HostAndPort authority)
HttpClientRequest
HttpClientRequest. continueHandler(Runnable handler)
HttpClientRequest
HttpClientRequest. drainHandler(Runnable handler)
HttpClientRequest
HttpClientRequest. earlyHintsHandler(Consumer<MultiMap> handler)
HttpClientRequest
HttpClientRequest. exceptionHandler(Consumer<Throwable> handler)
HttpClientRequest
HttpClientRequest. idleTimeout(long timeout)
static HttpClientRequest
HttpClientRequest. newInstance(io.vertx.core.http.HttpClientRequest arg)
HttpClientRequest
HttpClientRequest. pushHandler(Consumer<HttpClientRequest> handler)
HttpClientRequest
HttpClientRequest. putHeader(CharSequence name, CharSequence value)
HttpClientRequest
HttpClientRequest. putHeader(CharSequence name, Iterable<CharSequence> values)
HttpClientRequest
HttpClientRequest. putHeader(String name, Iterable<String> values)
HttpClientRequest
HttpClientRequest. putHeader(String name, String value)
HttpClientRequest
HttpClientRequest. redirectHandler(Function<HttpClientResponse,io.smallrye.mutiny.Uni<HttpClientRequest>> handler)
HttpClientRequest
HttpClientResponse. request()
HttpClientRequest
HttpClient. requestAndAwait(io.vertx.core.http.HttpMethod method, int port, String host, String requestURI)
Blocking variant ofHttpClient.request(HttpMethod,int,String,String)
.HttpClientRequest
HttpClient. requestAndAwait(io.vertx.core.http.HttpMethod method, String requestURI)
Blocking variant ofHttpClient.request(HttpMethod,String)
.HttpClientRequest
HttpClient. requestAndAwait(io.vertx.core.http.HttpMethod method, String host, String requestURI)
Blocking variant ofHttpClient.request(HttpMethod,String,String)
.HttpClientRequest
HttpClient. requestAndAwait(io.vertx.core.http.RequestOptions options)
Blocking variant ofHttpClient.request(RequestOptions)
.HttpClientRequest
HttpClientRequest. responseAndForget()
Variant ofresponse()
that ignores the result of the operation.HttpClientRequest
HttpClientRequest. sendHeadAndForget()
Variant ofsendHead()
that ignores the result of the operation.HttpClientRequest
HttpClientRequest. setChunked(boolean chunked)
HttpClientRequest
HttpClientRequest. setFollowRedirects(boolean followRedirects)
HttpClientRequest
HttpClientRequest. setHost(String host)
Deprecated.instead useauthority(HostAndPort)
HttpClientRequest
HttpClientRequest. setMaxRedirects(int maxRedirects)
HttpClientRequest
HttpClientRequest. setMethod(io.vertx.core.http.HttpMethod method)
HttpClientRequest
HttpClientRequest. setPort(int port)
Deprecated.instead useauthority(HostAndPort)
HttpClientRequest
HttpClientRequest. setStreamPriority(io.vertx.core.http.StreamPriority streamPriority)
HttpClientRequest
HttpClientRequest. setTimeout(long timeout)
Deprecated.instead useidleTimeout(long)
HttpClientRequest
HttpClientRequest. setURI(String uri)
HttpClientRequest
HttpClientRequest. setWriteQueueMaxSize(int maxSize)
HttpClientRequest
HttpClientRequest. traceOperation(String op)
HttpClientRequest
HttpClientRequest. writeCustomFrame(int type, int flags, Buffer payload)
HttpClientRequest
HttpClientRequest. 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 thehost
andport
.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 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 HttpClientRequest Modifier and Type Method Description HttpClientRequest
HttpClientRequest. pushHandler(Consumer<HttpClientRequest> handler)
HttpClientRequest
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 HttpClientRequest Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>
ProxyRequest. proxy(HttpClientRequest request)
Proxy this request to the origin server using the specifiedrequest
and then send the proxy response.Void
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
.ProxyResponse
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.
-