Uses of Class
io.vertx.mutiny.ext.web.client.HttpResponse
Packages that use HttpResponse
-
Uses of HttpResponse in io.vertx.mutiny.ext.web.client
Fields in io.vertx.mutiny.ext.web.client with type parameters of type HttpResponseMethods in io.vertx.mutiny.ext.web.client that return HttpResponseModifier and TypeMethodDescriptionstatic <T> HttpResponse<T>HttpResponse.newInstance(io.vertx.ext.web.client.HttpResponse<T> delegate) Creates a new instance of theHttpResponse.static <T> HttpResponse<T>HttpResponse.newInstance(io.vertx.ext.web.client.HttpResponse<T> delegate, TypeArg<T> typeArg_0) Creates a new instance of theHttpResponse.HttpRequest.sendAndAwait()Send a request, thehandlerwill receive the response as anHttpResponse.HttpRequest.sendBufferAndAwait(io.vertx.core.buffer.Buffer body) LikeHttpRequest.send()but with an HTTP requestbodybuffer.HttpRequest.sendFormAndAwait(io.vertx.core.MultiMap body) LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set toapplication/x-www-form-urlencoded.HttpRequest.sendFormAndAwait(io.vertx.core.MultiMap body, String charset) LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set toapplication/x-www-form-urlencoded.HttpRequest.sendJsonAndAwait(Object body) LikeHttpRequest.send()but with an HTTP requestbodyobject encoded as json and the content type set toapplication/json.HttpRequest.sendJsonObjectAndAwait(io.vertx.core.json.JsonObject body) LikeHttpRequest.send()but with an HTTP requestbodyobject encoded as json and the content type set toapplication/json.HttpRequest.sendMultipartFormAndAwait(MultipartForm body) LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set tomultipart/form-data.HttpRequest.sendStreamAndAwait(ReadStream<io.vertx.core.buffer.Buffer> body) LikeHttpRequest.send()but with an HTTP requestbodystream.HttpRequest.sendStreamAndAwait(Flow.Publisher<io.vertx.core.buffer.Buffer> body) LikeHttpRequest.send()but with an HTTP requestbodystream.Methods in io.vertx.mutiny.ext.web.client that return types with arguments of type HttpResponseModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest.send()Send a request, thehandlerwill receive the response as anHttpResponse.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest.sendBuffer(io.vertx.core.buffer.Buffer body) LikeHttpRequest.send()but with an HTTP requestbodybuffer.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest.sendForm(io.vertx.core.MultiMap body) LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set toapplication/x-www-form-urlencoded.io.smallrye.mutiny.Uni<HttpResponse<T>>LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set toapplication/x-www-form-urlencoded.io.smallrye.mutiny.Uni<HttpResponse<T>>LikeHttpRequest.send()but with an HTTP requestbodyobject encoded as json and the content type set toapplication/json.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest.sendJsonObject(io.vertx.core.json.JsonObject body) LikeHttpRequest.send()but with an HTTP requestbodyobject encoded as json and the content type set toapplication/json.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest.sendMultipartForm(MultipartForm body) LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set tomultipart/form-data.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest.sendStream(ReadStream<io.vertx.core.buffer.Buffer> body) LikeHttpRequest.send()but with an HTTP requestbodystream.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest.sendStream(Flow.Publisher<io.vertx.core.buffer.Buffer> body) LikeHttpRequest.send()but with an HTTP requestbodystream.