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. body()Same asbody(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)but with anhandlercalled when the operation completesHttpClientResponseHttpClientResponse. body(Handler<AsyncResult<Buffer>> handler)Same asbody(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)but with anhandlercalled when the operation completesHttpClientResponseHttpClientResponse. 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 io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxConnect()Create an HTTP tunnel to the server.io.reactivex.Single<HttpClientResponse>HttpClientRequest. rxResponse()Set a callback for the associatedHttpClientResponse.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.Method parameters in io.vertx.reactivex.core.http with type arguments of type HttpClientResponse Modifier and Type Method Description voidHttpClientRequest. connect(Handler<AsyncResult<HttpClientResponse>> handler)Create an HTTP tunnel to the server.HttpClientHttpClient. redirectHandler(io.reactivex.functions.Function<HttpClientResponse,io.reactivex.Single<RequestOptions>> handler)Set a redirect handler for the http client.HttpClientHttpClient. redirectHandler(Function<HttpClientResponse,Future<RequestOptions>> handler)Set a redirect handler for the http client.HttpClientRequestHttpClientRequest. response(Handler<AsyncResult<HttpClientResponse>> handler)Set a callback for the associatedHttpClientResponse.voidHttpClientRequest. send(io.reactivex.Flowable<Buffer> body, Handler<AsyncResult<HttpClientResponse>> handler)Send the request with a streambody.voidHttpClientRequest. send(Handler<AsyncResult<HttpClientResponse>> handler)Send the request with an empty body.voidHttpClientRequest. send(Buffer body, Handler<AsyncResult<HttpClientResponse>> handler)Send the request with a bufferbody.voidHttpClientRequest. send(ReadStream<Buffer> body, Handler<AsyncResult<HttpClientResponse>> handler)Send the request with a streambody.voidHttpClientRequest. send(String body, Handler<AsyncResult<HttpClientResponse>> handler)Send the request with a stringbody.
-