Uses of Class
io.vertx.mutiny.ext.web.client.HttpResponse
-
Packages that use HttpResponse Package Description io.vertx.mutiny.ext.web.client io.vertx.mutiny.ext.web.client.predicate -
-
Uses of HttpResponse in io.vertx.mutiny.ext.web.client
Fields in io.vertx.mutiny.ext.web.client with type parameters of type HttpResponse Modifier and Type Field Description static TypeArg<HttpResponse>
HttpResponse. __TYPE_ARG
Methods in io.vertx.mutiny.ext.web.client that return HttpResponse Modifier and Type Method Description static <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)
HttpResponse<T>
HttpRequest. sendAndAwait()
Blocking variant ofHttpRequest.send()
.HttpResponse<T>
HttpRequest. sendBufferAndAwait(Buffer body)
Blocking variant ofHttpRequest.sendBuffer(io.vertx.mutiny.core.buffer.Buffer)
.HttpResponse<T>
HttpRequest. sendFormAndAwait(MultiMap body)
Blocking variant ofHttpRequest.sendForm(io.vertx.mutiny.core.MultiMap)
.HttpResponse<T>
HttpRequest. sendJsonAndAwait(Object body)
Blocking variant ofHttpRequest.sendJson(Object)
.HttpResponse<T>
HttpRequest. sendJsonObjectAndAwait(io.vertx.core.json.JsonObject body)
Blocking variant ofHttpRequest.sendJsonObject(JsonObject)
.HttpResponse<T>
HttpRequest. sendMultipartFormAndAwait(MultipartForm body)
Blocking variant ofHttpRequest.sendMultipartForm(io.vertx.mutiny.ext.web.multipart.MultipartForm)
.HttpResponse<T>
HttpRequest. sendStreamAndAwait(ReadStream<Buffer> body)
Blocking variant ofio.vertx.mutiny.ext.web.client.HttpRequest#sendStream(io.vertx.mutiny.core.streams.ReadStream
.) HttpResponse<T>
HttpRequest. sendStreamAndAwait(org.reactivestreams.Publisher<Buffer> body)
Blocking variant ofHttpRequest.sendStream(Publisher<Buffer>)
.Methods in io.vertx.mutiny.ext.web.client that return types with arguments of type HttpResponse Modifier and Type Method Description io.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>>
HttpRequest. sendForm(MultiMap body)
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>>
HttpRequest. sendJson(Object 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. 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(org.reactivestreams.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 HttpResponse Modifier and Type Method Description HttpRequest<T>
HttpRequest. expect(Function<HttpResponse<Void>,ResponsePredicateResult> predicate)
-
Uses of HttpResponse in io.vertx.mutiny.ext.web.client.predicate
Methods in io.vertx.mutiny.ext.web.client.predicate that return HttpResponse Modifier and Type Method Description HttpResponse<Buffer>
ResponsePredicateResult. response()
Methods in io.vertx.mutiny.ext.web.client.predicate with parameters of type HttpResponse Modifier and Type Method Description ResponsePredicateResult
ResponsePredicate. apply(HttpResponse<Void> in)
Method parameters in io.vertx.mutiny.ext.web.client.predicate with type arguments of type HttpResponse Modifier and Type Method Description static ResponsePredicate
ResponsePredicate. create(Function<HttpResponse<Void>,ResponsePredicateResult> test)
static ResponsePredicate
ResponsePredicate. create(Function<HttpResponse<Void>,ResponsePredicateResult> test, ErrorConverter errorConverter)
-