it.thomasjohansen.launcher.web.Launcher Maven / Gradle / Ivy
package it.thomasjohansen.launcher.web;
import java.io.Closeable;
import java.lang.Exception; /**
* Launch web applications.
* @author [email protected]
*/
public interface Launcher extends Closeable {
Launcher launch() throws Exception;
Launcher awaitTermination();
}