Uses of Interface
io.vertx.core.http.HttpClientResponse
-
Packages that use HttpClientResponse Package Description io.vertx.core.http -
-
Uses of HttpClientResponse in io.vertx.core.http
Fields in io.vertx.core.http with type parameters of type HttpClientResponse Modifier and Type Field Description static Function<HttpClientResponse,Future<RequestOptions>>HttpClientAgent. DEFAULT_REDIRECT_HANDLERConstant containing the default redirect handler of used by the client.Methods in io.vertx.core.http that return HttpClientResponse Modifier and Type Method Description default 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)HttpClientResponseHttpClientResponse. pause()HttpClientResponseHttpClientResponse. resume()HttpClientResponseHttpClientResponse. streamPriorityHandler(Handler<StreamPriority> handler)Set an handler for stream priority changes.Methods in io.vertx.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()default Future<HttpClientResponse>HttpClientRequest. send()Send the request with an empty body.default Future<HttpClientResponse>HttpClientRequest. send(Buffer body)Send the request with a bufferbody.Future<HttpClientResponse>HttpClientRequest. send(ClientForm form)LikeHttpClientRequest.send()but with aform.default Future<HttpClientResponse>HttpClientRequest. send(ReadStream<Buffer> body)Send the request with a streambody.default Future<HttpClientResponse>HttpClientRequest. send(String body)Send the request with a stringbody.Method parameters in io.vertx.core.http with type arguments of type HttpClientResponse Modifier and Type Method Description HttpClientRequestHttpClientRequest. redirectHandler(Function<HttpClientResponse,Future<HttpClientRequest>> handler)HttpClientBuilderHttpClientBuilder. withRedirectHandler(Function<HttpClientResponse,Future<RequestOptions>> handler)Set a redirect handler for the http client.
-