Package io.quarkus.vertx.http
Interface HttpServerOptionsCustomizer
-
public interface HttpServerOptionsCustomizerInterface 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
HttpServerOptionsmust 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 voidcustomizeDomainSocketServer(io.vertx.core.http.HttpServerOptions options)Allows customizing the server listening on a domain socket if any.default voidcustomizeHttpServer(io.vertx.core.http.HttpServerOptions options)Allows customizing the HTTP server options.default voidcustomizeHttpsServer(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.
-
-