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 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. sendForm(MultiMap body, String charset)
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)
-