Uses of Class
io.vertx.rxjava.core.http.HttpClientResponse
-
Packages that use HttpClientResponse Package Description io.vertx.rxjava.core.http -
-
Uses of HttpClientResponse in io.vertx.rxjava.core.http
Fields in io.vertx.rxjava.core.http with type parameters of type HttpClientResponse Modifier and Type Field Description static TypeArg<HttpClientResponse>HttpClientResponse. __TYPE_ARGMethods in io.vertx.rxjava.core.http that return HttpClientResponse Modifier and Type Method Description HttpClientResponseHttpClientResponse. body()Same asbody(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.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.rxjava.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.rxjava.core.http that return types with arguments of type HttpClientResponse Modifier and Type Method Description rx.Single<HttpClientResponse>HttpClientRequest. rxConnect()Create an HTTP tunnel to the server.rx.Single<HttpClientResponse>HttpClientRequest. rxResponse()Set a callback for the associatedHttpClientResponse.rx.Single<HttpClientResponse>HttpClientRequest. rxSend()Send the request with an empty body.rx.Single<HttpClientResponse>HttpClientRequest. rxSend(Buffer body)Send the request with a bufferbody.rx.Single<HttpClientResponse>HttpClientRequest. rxSend(ReadStream<Buffer> body)Send the request with a streambody.rx.Single<HttpClientResponse>HttpClientRequest. rxSend(String body)Send the request with a stringbody.rx.Single<HttpClientResponse>HttpClientRequest. rxSend(rx.Observable<Buffer> body)Send the request with a streambody.Method parameters in io.vertx.rxjava.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(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(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.voidHttpClientRequest. send(rx.Observable<Buffer> body, Handler<AsyncResult<HttpClientResponse>> handler)Send the request with a streambody.
-