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 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(Flow.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)
Deprecated.instead useHttpClientBuilder.withRedirectHandler(Function)
HttpClientRequest
HttpClientRequest. redirectHandler(Function<HttpClientResponse,io.smallrye.mutiny.Uni<HttpClientRequest>> handler)
HttpClientBuilder
HttpClientBuilder. withRedirectHandler(Function<HttpClientResponse,io.smallrye.mutiny.Uni<io.vertx.core.http.RequestOptions>> handler)
-