open fun head(options: RequestOptions): HttpClientRequest
Create an HTTP HEAD request to send to the server with the specified options.
Return
an HTTP client request object
open fun head(port: Int, host: String, requestURI: String): HttpClientRequest
Create an HTTP HEAD request to send to the server at the specified host and port.
Return
an HTTP client request object
open fun head(host: String, requestURI: String): HttpClientRequest
Create an HTTP HEAD request to send to the server at the specified host and default port.
Return
an HTTP client request object
open fun head(options: RequestOptions, responseHandler: Handler<HttpClientResponse>): HttpClientRequest
Create an HTTP HEAD request to send to the server with the specified options, specifying a response handler to receive the response
responseHandler - the response handler
Return
an HTTP client request object
open fun head(port: Int, host: String, requestURI: String, responseHandler: Handler<HttpClientResponse>): HttpClientRequest
Create an HTTP HEAD request to send to the server at the specified host and port, specifying a response handler to receive the response
responseHandler - the response handler
Return
an HTTP client request object
open fun head(host: String, requestURI: String, responseHandler: Handler<HttpClientResponse>): HttpClientRequest
Create an HTTP HEAD request to send to the server at the specified host and default port, specifying a response handler to receive the response
responseHandler - the response handler
Return
an HTTP client request object
open fun head(requestURI: String): HttpClientRequest
Create an HTTP HEAD request to send to the server at the default host and port.
Return
an HTTP client request object
open fun head(requestURI: String, responseHandler: Handler<HttpClientResponse>): HttpClientRequest
Create an HTTP HEAD request to send to the server at the default host and port, specifying a response handler to receive the response
responseHandler - the response handler
Return
an HTTP client request object