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 arg) static <T> HttpResponse<T>
HttpResponse.newInstance
(io.vertx.ext.web.client.HttpResponse arg, TypeArg<T> __typeArg_T) HttpRequest.sendAndAwait()
Blocking variant ofHttpRequest.send()
.HttpRequest.sendBufferAndAwait
(Buffer body) Blocking variant ofHttpRequest.sendBuffer(io.vertx.mutiny.core.buffer.Buffer)
.HttpRequest.sendFormAndAwait
(MultiMap body) Blocking variant ofHttpRequest.sendForm(io.vertx.mutiny.core.MultiMap)
.HttpRequest.sendFormAndAwait
(MultiMap body, String charset) Blocking variant ofHttpRequest.sendForm(io.vertx.mutiny.core.MultiMap,String)
.HttpRequest.sendJsonAndAwait
(Object body) Blocking variant ofHttpRequest.sendJson(Object)
.HttpRequest.sendJsonObjectAndAwait
(io.vertx.core.json.JsonObject body) Blocking variant ofHttpRequest.sendJsonObject(JsonObject)
.HttpRequest.sendMultipartFormAndAwait
(MultipartForm body) Blocking variant ofHttpRequest.sendMultipartForm(io.vertx.mutiny.ext.web.multipart.MultipartForm)
.HttpRequest.sendStreamAndAwait
(ReadStream<Buffer> body) Blocking variant ofHttpRequest.sendStream(io.vertx.mutiny.core.streams.ReadStream)
.HttpRequest.sendStreamAndAwait
(Flow.Publisher<Buffer> body) Blocking variant ofHttpRequest.sendStream(Flow$Publisher)
.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, thehandler
will receive the response as anHttpResponse
.io.smallrye.mutiny.Uni<HttpResponse<T>>
HttpRequest.sendBuffer
(Buffer body) LikeHttpRequest.send()
but with an HTTP requestbody
buffer.io.smallrye.mutiny.Uni<HttpResponse<T>>
LikeHttpRequest.send()
but with an HTTP requestbody
multimap 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 requestbody
multimap 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 requestbody
object 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 requestbody
object 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 requestbody
multimap encoded as form and the content type set tomultipart/form-data
.io.smallrye.mutiny.Uni<HttpResponse<T>>
HttpRequest.sendStream
(ReadStream<Buffer> body) LikeHttpRequest.send()
but with an HTTP requestbody
stream.io.smallrye.mutiny.Uni<HttpResponse<T>>
HttpRequest.sendStream
(Flow.Publisher<Buffer> body) LikeHttpRequest.send()
but with an HTTP requestbody
stream.Method parameters in io.vertx.mutiny.ext.web.client with type arguments of type HttpResponseModifier and TypeMethodDescriptionHttpRequest.expect
(Function<HttpResponse<Void>, ResponsePredicateResult> predicate) Deprecated. -
Uses of HttpResponse in io.vertx.mutiny.ext.web.client.predicate
Methods in io.vertx.mutiny.ext.web.client.predicate that return HttpResponseMethods in io.vertx.mutiny.ext.web.client.predicate with parameters of type HttpResponseMethod parameters in io.vertx.mutiny.ext.web.client.predicate with type arguments of type HttpResponseModifier and TypeMethodDescriptionstatic ResponsePredicate
ResponsePredicate.create
(Function<HttpResponse<Void>, ResponsePredicateResult> test) Deprecated.static ResponsePredicate
ResponsePredicate.create
(Function<HttpResponse<Void>, ResponsePredicateResult> test, ErrorConverter errorConverter) Deprecated.
HttpResponseExpectation
along withFuture.expecting(Expectation)