Interface VertxRequestCustomizingClientBuilder<C extends VertxRequestCustomizingClientBuilder>
public interface VertxRequestCustomizingClientBuilder<C extends VertxRequestCustomizingClientBuilder>
-
Method Summary
Modifier and TypeMethodDescriptionhttpClientOptions(io.vertx.core.http.HttpClientOptions httpClientOptions) Specifies the HTTP client options to use.httpClientOptions(Class<? extends io.vertx.core.http.HttpClientOptions> httpClientOptionsClass) Specifies the HTTP client options to use.httpClientOptionsCustomizer(Consumer<io.vertx.core.http.HttpClientOptions> httpClientOptionsCustomizer) Specifies a callback which will be invoked after Quarkus has populatedHttpClientOptionsbut before Vert.x uses it to createHttpClienthttpClientRequestCustomizer(Consumer<io.vertx.core.http.HttpClientRequest> httpClientOptionsCustomizer) Specifies a callback which will be invoked when Vert.x has created theHttpClientRequestand before Quarkus does anything with it.
-
Method Details
-
httpClientOptions
Specifies the HTTP client options to use.- Parameters:
httpClientOptionsClass- the HTTP client options to use.- Returns:
- the current builder
-
httpClientOptions
Specifies the HTTP client options to use.- Parameters:
httpClientOptions- the HTTP client options to use.- Returns:
- the current builder
-
httpClientOptionsCustomizer
C httpClientOptionsCustomizer(Consumer<io.vertx.core.http.HttpClientOptions> httpClientOptionsCustomizer) Specifies a callback which will be invoked after Quarkus has populatedHttpClientOptionsbut before Vert.x uses it to createHttpClient -
httpClientRequestCustomizer
C httpClientRequestCustomizer(Consumer<io.vertx.core.http.HttpClientRequest> httpClientOptionsCustomizer) Specifies a callback which will be invoked when Vert.x has created theHttpClientRequestand before Quarkus does anything with it.
-