io.quarkus.vertx.http.DomainSocketServerStart 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 domain socket server starts listening
* on the configured host and port.
*
*
* @ApplicationScoped
* public class MyListener {
*
* void domainSocketStarted(@ObservesAsync DomainSocketServerStart start) {
* // ...notified when the domain socket server starts listening
* }
* }
*
*/
public record DomainSocketServerStart(HttpServerOptions options) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy