Uses of Class
io.vertx.rxjava.ext.web.client.HttpResponse
-
Packages that use HttpResponse Package Description io.vertx.rxjava.ext.web.client io.vertx.rxjava.ext.web.client.predicate -
-
Uses of HttpResponse in io.vertx.rxjava.ext.web.client
Fields in io.vertx.rxjava.ext.web.client with type parameters of type HttpResponse Modifier and Type Field Description static TypeArg<HttpResponse>
HttpResponse. __TYPE_ARG
Methods in io.vertx.rxjava.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)
Method parameters in io.vertx.rxjava.ext.web.client with type arguments of type HttpResponse Modifier and Type Method Description HttpRequest<T>
HttpRequest. expect(Function<HttpResponse<Void>,ResponsePredicateResult> predicate)
Deprecated.void
HttpRequest. send(io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
Send a request, thehandler
will receive the response as anHttpResponse
.void
HttpRequest. sendBuffer(Buffer body, io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
buffer.void
HttpRequest. sendForm(MultiMap body, io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.void
HttpRequest. sendForm(MultiMap body, String charset, io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.void
HttpRequest. sendJson(Object body, io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
object encoded as json and the content type set toapplication/json
.void
HttpRequest. sendJsonObject(io.vertx.core.json.JsonObject body, io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
object encoded as json and the content type set toapplication/json
.void
HttpRequest. sendMultipartForm(MultipartForm body, io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set tomultipart/form-data
.void
HttpRequest. sendStream(ReadStream<Buffer> body, io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
stream.void
HttpRequest. sendStream(rx.Observable<Buffer> body, io.vertx.core.Handler<io.vertx.core.AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
stream. -
Uses of HttpResponse in io.vertx.rxjava.ext.web.client.predicate
Methods in io.vertx.rxjava.ext.web.client.predicate that return HttpResponse Modifier and Type Method Description HttpResponse<Buffer>
ResponsePredicateResult. response()
Deprecated.Methods in io.vertx.rxjava.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.rxjava.ext.web.client.predicate with type arguments of type HttpResponse Modifier and Type Method Description static ResponsePredicate
ResponsePredicate. create(Function<HttpResponse<Void>,ResponsePredicateResult> test)
Deprecated.static ResponsePredicate
ResponsePredicate. create(Function<HttpResponse<Void>,ResponsePredicateResult> test, ErrorConverter errorConverter)
Deprecated.
-