Interface HttpServerOptionsCustomizer


  • public interface HttpServerOptionsCustomizer
    Interface exposed by beans willing to customizing the HTTP server options.

    This interface is composed of three methods allowing the customization of the different servers: HTTP, HTTPS and domain socket.

    The passed HttpServerOptions must be customized in the body of the implementation. The default implementations are no-op.

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default void customizeDomainSocketServer​(io.vertx.core.http.HttpServerOptions options)
      Allows customizing the server listening on a domain socket if any.
      default void customizeHttpServer​(io.vertx.core.http.HttpServerOptions options)
      Allows customizing the HTTP server options.
      default void customizeHttpsServer​(io.vertx.core.http.HttpServerOptions options)
      Allows customizing the HTTPS server options.
    • Method Detail

      • customizeHttpServer

        default void customizeHttpServer​(io.vertx.core.http.HttpServerOptions options)
        Allows customizing the HTTP server options.
      • customizeHttpsServer

        default void customizeHttpsServer​(io.vertx.core.http.HttpServerOptions options)
        Allows customizing the HTTPS server options.
      • customizeDomainSocketServer

        default void customizeDomainSocketServer​(io.vertx.core.http.HttpServerOptions options)
        Allows customizing the server listening on a domain socket if any.