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_ARGMethods 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, thehandlerwill receive the response as anHttpResponse.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest. sendBuffer(Buffer body)LikeHttpRequest.send()but with an HTTP requestbodybuffer.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest. sendForm(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>>HttpRequest. sendForm(MultiMap body, String charset)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>>HttpRequest. sendJson(Object 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. 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<Buffer> body)LikeHttpRequest.send()but with an HTTP requestbodystream.io.smallrye.mutiny.Uni<HttpResponse<T>>HttpRequest. sendStream(Flow.Publisher<Buffer> body)LikeHttpRequest.send()but with an HTTP requestbodystream.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 ResponsePredicateResultResponsePredicate. 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 ResponsePredicateResponsePredicate. create(Function<HttpResponse<Void>,ResponsePredicateResult> test)static ResponsePredicateResponsePredicate. create(Function<HttpResponse<Void>,ResponsePredicateResult> test, ErrorConverter errorConverter) 
 -