Uses of Interface
io.vertx.ext.web.client.HttpResponse
-
Packages that use HttpResponse Package Description io.vertx.ext.web.client io.vertx.reactivex.ext.web.client io.vertx.rxjava3.ext.web.client -
-
Uses of HttpResponse in io.vertx.ext.web.client
Methods in io.vertx.ext.web.client that return types with arguments of type HttpResponse Modifier and Type Method Description Future<HttpResponse<T>>
HttpRequest. send()
Send a request, thehandler
will receive the response as anHttpResponse
.Future<HttpResponse<T>>
HttpRequest. sendBuffer(Buffer body)
LikeHttpRequest.send()
but with an HTTP requestbody
buffer.Future<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
.Future<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
.Future<HttpResponse<T>>
HttpRequest. sendJson(Object body)
LikeHttpRequest.send()
but with an HTTP requestbody
object encoded as json and the content type set toapplication/json
.Future<HttpResponse<T>>
HttpRequest. sendJsonObject(JsonObject body)
LikeHttpRequest.send()
but with an HTTP requestbody
object encoded as json and the content type set toapplication/json
.Future<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
.Future<HttpResponse<T>>
HttpRequest. sendStream(ReadStream<Buffer> body)
LikeHttpRequest.send()
but with an HTTP requestbody
stream. -
Uses of HttpResponse in io.vertx.reactivex.ext.web.client
Methods in io.vertx.reactivex.ext.web.client that return HttpResponse Modifier and Type Method Description HttpResponse
HttpResponse. getDelegate()
Methods in io.vertx.reactivex.ext.web.client with parameters of type HttpResponse Modifier and Type Method Description static <T> HttpResponse<T>
HttpResponse. newInstance(HttpResponse arg)
static <T> HttpResponse<T>
HttpResponse. newInstance(HttpResponse arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Constructors in io.vertx.reactivex.ext.web.client with parameters of type HttpResponse Constructor Description HttpResponse(HttpResponse delegate)
-
Uses of HttpResponse in io.vertx.rxjava3.ext.web.client
Methods in io.vertx.rxjava3.ext.web.client that return HttpResponse Modifier and Type Method Description HttpResponse
HttpResponse. getDelegate()
Methods in io.vertx.rxjava3.ext.web.client with parameters of type HttpResponse Modifier and Type Method Description static <T> HttpResponse<T>
HttpResponse. newInstance(HttpResponse arg)
static <T> HttpResponse<T>
HttpResponse. newInstance(HttpResponse arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Constructors in io.vertx.rxjava3.ext.web.client with parameters of type HttpResponse Constructor Description HttpResponse(HttpResponse delegate)
-