Uses of Class
io.vertx.mutiny.core.http.HttpClientResponse
-
Packages that use HttpClientResponse Package Description io.vertx.mutiny.core.http -
-
Uses of HttpClientResponse in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type HttpClientResponse Modifier and Type Field Description static TypeArg<HttpClientResponse>
HttpClientResponse. __TYPE_ARG
Methods in io.vertx.mutiny.core.http that return HttpClientResponse Modifier and Type Method Description HttpClientResponse
HttpClientResponse. bodyAndForget()
Variant ofbody()
that ignores the result of the operation.HttpClientResponse
HttpClientResponse. bodyHandler(Consumer<Buffer> bodyHandler)
HttpClientResponse
HttpClientRequest. connectAndAwait()
Blocking variant ofHttpClientRequest.connect()
.HttpClientResponse
HttpClientResponse. customFrameHandler(Consumer<HttpFrame> handler)
HttpClientResponse
HttpClientResponse. endHandler(Runnable endHandler)
HttpClientResponse
HttpClientResponse. exceptionHandler(Consumer<Throwable> handler)
HttpClientResponse
HttpClientResponse. fetch(long amount)
HttpClientResponse
HttpClientResponse. handler(Consumer<Buffer> handler)
static HttpClientResponse
HttpClientResponse. newInstance(io.vertx.core.http.HttpClientResponse arg)
HttpClientResponse
HttpClientResponse. pause()
HttpClientResponse
HttpClientRequest. responseAndAwait()
Blocking variant ofHttpClientRequest.response()
.HttpClientResponse
HttpClientResponse. resume()
HttpClientResponse
HttpClientRequest. sendAndAwait()
Blocking variant ofHttpClientRequest.send()
.HttpClientResponse
HttpClientRequest. sendAndAwait(Buffer body)
Blocking variant ofHttpClientRequest.send(io.vertx.mutiny.core.buffer.Buffer)
.HttpClientResponse
HttpClientRequest. sendAndAwait(ReadStream<Buffer> body)
Blocking variant ofio.vertx.mutiny.core.http.HttpClientRequest#send(io.vertx.mutiny.core.streams.ReadStream
.) HttpClientResponse
HttpClientRequest. sendAndAwait(String body)
Blocking variant ofHttpClientRequest.send(String)
.HttpClientResponse
HttpClientRequest. sendAndAwait(org.reactivestreams.Publisher<Buffer> body)
Blocking variant ofHttpClientRequest.send(Publisher<Buffer>)
.HttpClientResponse
HttpClientResponse. streamPriorityHandler(Consumer<io.vertx.core.http.StreamPriority> handler)
Methods in io.vertx.mutiny.core.http that return types with arguments of type HttpClientResponse Modifier and Type Method Description io.smallrye.mutiny.Uni<HttpClientResponse>
HttpClientRequest. connect()
Create an HTTP tunnel to the server.io.smallrye.mutiny.Uni<HttpClientResponse>
HttpClientRequest. response()
Set a callback for the associatedHttpClientResponse
.io.smallrye.mutiny.Uni<HttpClientResponse>
HttpClientRequest. send()
Send the request with an empty body.io.smallrye.mutiny.Uni<HttpClientResponse>
HttpClientRequest. send(Buffer body)
Send the request with a bufferbody
.io.smallrye.mutiny.Uni<HttpClientResponse>
HttpClientRequest. send(ReadStream<Buffer> body)
Send the request with a streambody
.io.smallrye.mutiny.Uni<HttpClientResponse>
HttpClientRequest. send(String body)
Send the request with a stringbody
.io.smallrye.mutiny.Uni<HttpClientResponse>
HttpClientRequest. send(org.reactivestreams.Publisher<Buffer> body)
Send the request with a streambody
.Method parameters in io.vertx.mutiny.core.http with type arguments of type HttpClientResponse Modifier and Type Method Description HttpClient
HttpClient. redirectHandler(Function<HttpClientResponse,io.smallrye.mutiny.Uni<io.vertx.core.http.RequestOptions>> handler)
-