vertx / io.vertx.reactivex.ext.web.client / WebClient / put

put

open fun put(requestURI: String): HttpRequest<Buffer>

Create an HTTP PUT request to send to the server at the default host and port.

Parameters

requestURI - the relative URI

Return
an HTTP client request object

open fun put(port: Int, host: String, requestURI: String): HttpRequest<Buffer>

Create an HTTP PUT request to send to the server at the specified host and port.

Parameters

port - the port

host - the host

requestURI - the relative URI

Return
an HTTP client request object

open fun put(host: String, requestURI: String): HttpRequest<Buffer>

Create an HTTP PUT request to send to the server at the specified host and default port.

Parameters

host - the host

requestURI - the relative URI

Return
an HTTP client request object