invoke
operator fun HttpRequestBuilder.Companion.invoke(block: URLBuilder.() -> Unit): HttpRequestBuilder
Content copied to clipboard
Executes a block that configures the URLBuilder associated to thisrequest.
operator fun HttpRequestBuilder.Companion.invoke(scheme: String = "http", host: String = "localhost", port: Int = DEFAULT_PORT, path: String = "/", block: URLBuilder.() -> Unit = {}): HttpRequestBuilder
Content copied to clipboard
Constructs a HttpRequestBuilder from URL information: scheme, host, port and path and optionally further configures it using block.
operator fun HttpRequestBuilder.Companion.invoke(url: URL): HttpRequestBuilder
Content copied to clipboard
Constructs a HttpRequestBuilder from url.