io.vertx.up.Launcher Maven / Gradle / Ivy
package io.vertx.up;
import java.util.function.Consumer;
/**
* Launcher:
* 1. Cluster
* 2. Vertx
* 3. Verticle Deployment
* 4. Router Deployment
*/
public interface Launcher {
/**
* Start
*/
void start(Consumer vertx);
/**
* Stop
*/
void stop(Consumer vertx);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy