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

delete

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

Create an HTTP DELETE 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 delete(port: Int, host: String, requestURI: String): HttpRequest<Buffer>

Create an HTTP DELETE 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 delete(host: String, requestURI: String): HttpRequest<Buffer>

Create an HTTP DELETE 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