open fun put(options: RequestOptions): HttpClientRequest
Create an HTTP PUT request to send to the server with the specified options.
Return
an HTTP client request object
open fun put(port: Int, host: String, requestURI: String): HttpClientRequest
Create an HTTP PUT request to send to the server at the specified host and port.
Return
an HTTP client request object
open fun put(host: String, requestURI: String): HttpClientRequest
Create an HTTP PUT request to send to the server at the specified host and default port.
Return
an HTTP client request object
open fun put(options: RequestOptions, responseHandler: Handler<HttpClientResponse>): HttpClientRequest
Create an HTTP PUT 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 put(port: Int, host: String, requestURI: String, responseHandler: Handler<HttpClientResponse>): HttpClientRequest
Create an HTTP PUT 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 put(host: String, requestURI: String, responseHandler: Handler<HttpClientResponse>): HttpClientRequest
Create an HTTP PUT 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 put(requestURI: String): HttpClientRequest
Create an HTTP PUT request to send to the server at the default host and port.
Return
an HTTP client request object
open fun put(requestURI: String, responseHandler: Handler<HttpClientResponse>): HttpClientRequest
Create an HTTP PUT 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