vertx / io.vertx.kotlin.servicediscovery.types / HttpEndpoint / getClientAwait

getClientAwait

suspend fun getClientAwait(discovery: ServiceDiscovery, filter: JsonObject): HttpClient

Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.

Parameters

discovery - The service discovery instance

filter - The filter, optional

resultHandler - The result handler

suspend fun getClientAwait(discovery: ServiceDiscovery, filter: JsonObject, conf: JsonObject): HttpClient

Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client

Parameters

discovery - The service discovery instance

filter - The filter, optional

conf - the configuration of the client

resultHandler - The result handler

suspend fun getClientAwait(discovery: ServiceDiscovery, filter: Function<Record, Boolean>): HttpClient

Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.

Parameters

discovery - The service discovery instance

filter - The filter

resultHandler - The result handler

suspend fun getClientAwait(discovery: ServiceDiscovery, filter: Function<Record, Boolean>, conf: JsonObject): HttpClient

Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client.

Parameters

discovery - The service discovery instance

filter - The filter

conf - the configuration of the client

resultHandler - The result handler