All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.vertx.http.ManagementInterface Maven / Gradle / Ivy

The newest version!
package io.quarkus.vertx.http;

import io.vertx.ext.web.Router;

/**
 * A class allowing to access the management router.
 * You can access the instance of this class using a CDI observer:
 * {@code public void init(@Observe ManagementInterface mi) {...}}
 * 

* If the management interface is disabled, the event is not fired. */ public interface ManagementInterface { /** * @return the management router */ Router router(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy