vertx / io.vertx.reactivex.core.http / HttpClient / requestAbs

requestAbs

open fun requestAbs(method: HttpMethod, absoluteURI: String): HttpClientRequest

Create an HTTP request to send to the server using an absolute URI

Parameters

method - the HTTP method

absoluteURI - the absolute URI

Return
an HTTP client request object

open fun requestAbs(method: HttpMethod, absoluteURI: String, responseHandler: Handler<HttpClientResponse>): HttpClientRequest

Create an HTTP request to send to the server using an absolute URI, specifying a response handler to receive the response

Parameters

method - the HTTP method

absoluteURI - the absolute URI

responseHandler - the response handler

Return
an HTTP client request object