Interface VertxRequestCustomizingClientBuilder<C extends VertxRequestCustomizingClientBuilder>


public interface VertxRequestCustomizingClientBuilder<C extends VertxRequestCustomizingClientBuilder>
  • Method Summary

    Modifier and Type
    Method
    Description
    httpClientOptions(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 populated HttpClientOptions but before Vert.x uses it to create HttpClient
    httpClientRequestCustomizer(Consumer<io.vertx.core.http.HttpClientRequest> httpClientOptionsCustomizer)
    Specifies a callback which will be invoked when Vert.x has created the HttpClientRequest and before Quarkus does anything with it.
  • Method Details

    • httpClientOptions

      C httpClientOptions(Class<? extends io.vertx.core.http.HttpClientOptions> httpClientOptionsClass)
      Specifies the HTTP client options to use.
      Parameters:
      httpClientOptionsClass - the HTTP client options to use.
      Returns:
      the current builder
    • httpClientOptions

      C httpClientOptions(io.vertx.core.http.HttpClientOptions 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 populated HttpClientOptions but before Vert.x uses it to create HttpClient
    • httpClientRequestCustomizer

      C httpClientRequestCustomizer(Consumer<io.vertx.core.http.HttpClientRequest> httpClientOptionsCustomizer)
      Specifies a callback which will be invoked when Vert.x has created the HttpClientRequest and before Quarkus does anything with it.