io.quarkus.vertx.http.HttpsServerStart Maven / Gradle / Ivy
The newest version!
package io.quarkus.vertx.http;
import io.vertx.core.http.HttpServerOptions;
/**
* Quarkus fires a CDI event of this type asynchronously when the HTTPS server starts listening
* on the configured host and port.
*
*
* @ApplicationScoped
* public class MyListener {
*
* void httpsStarted(@ObservesAsync HttpsServerStart start) {
* // ...notified when the HTTPS server starts listening
* }
* }
*
*/
public record HttpsServerStart(HttpServerOptions options) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy