Uses of Class
io.vertx.reactivex.core.http.HttpClientResponse
-
Packages that use HttpClientResponse Package Description io.vertx.reactivex.core.http -
-
Uses of HttpClientResponse in io.vertx.reactivex.core.http
Fields in io.vertx.reactivex.core.http with type parameters of type HttpClientResponse Modifier and Type Field Description static TypeArg<HttpClientResponse>HttpClientResponse. __TYPE_ARGMethods in io.vertx.reactivex.core.http that return HttpClientResponse Modifier and Type Method Description HttpClientResponseHttpClientResponse. bodyHandler(Handler<Buffer> bodyHandler)Convenience method for receiving the entire request body in one piece.HttpClientResponseHttpClientResponse. customFrameHandler(Handler<HttpFrame> handler)Set an custom frame handler.HttpClientResponseHttpClientResponse. endHandler(Handler<Void> endHandler)HttpClientResponseHttpClientResponse. exceptionHandler(Handler<Throwable> handler)HttpClientResponseHttpClientResponse. fetch(long amount)HttpClientResponseHttpClientResponse. handler(Handler<Buffer> handler)static HttpClientResponseHttpClientResponse. newInstance(HttpClientResponse arg)HttpClientResponseHttpClientResponse. pause()HttpClientResponseHttpClientResponse. resume()HttpClientResponseHttpClientResponse. streamPriorityHandler(Handler<StreamPriority> handler)Set an handler for stream priority changes.Methods in io.vertx.reactivex.core.http that return types with arguments of type HttpClientResponse Modifier and Type Method Description Future<HttpClientResponse>HttpClientRequest. connect()Create an HTTP tunnel to the server.Future<HttpClientResponse>HttpClientRequest. response()io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxConnect()Create an HTTP tunnel to the server.io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxResponse()io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxSend()Send the request with an empty body.io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxSend(io.reactivex.Flowable<Buffer> body)Send the request with a streambody.io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxSend(Buffer body)Send the request with a bufferbody.io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxSend(ReadStream<Buffer> body)Send the request with a streambody.io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxSend(String body)Send the request with a stringbody.Future<HttpClientResponse>HttpClientRequest. send()Send the request with an empty body.Future<HttpClientResponse>HttpClientRequest. send(io.reactivex.Flowable<Buffer> body)Send the request with a streambody.Future<HttpClientResponse>HttpClientRequest. send(Buffer body)Send the request with a bufferbody.Future<HttpClientResponse>HttpClientRequest. send(ReadStream<Buffer> body)Send the request with a streambody.Future<HttpClientResponse>HttpClientRequest. send(String body)Send the request with a stringbody.Method parameters in io.vertx.reactivex.core.http with type arguments of type HttpClientResponse Modifier and Type Method Description HttpClientRequestHttpClientRequest. redirectHandler(io.reactivex.functions.Function<HttpClientResponse,io.reactivex.Single<HttpClientRequest>> handler)HttpClientRequestHttpClientRequest. redirectHandler(Function<HttpClientResponse,Future<HttpClientRequest>> handler)HttpClientBuilderHttpClientBuilder. withRedirectHandler(io.reactivex.functions.Function<HttpClientResponse,io.reactivex.Single<RequestOptions>> handler)Set a redirect handler for the http client.HttpClientBuilderHttpClientBuilder. withRedirectHandler(Function<HttpClientResponse,Future<RequestOptions>> handler)Set a redirect handler for the http client.
-