org.hertsstack.http.HertsHttpEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of herts-http Show documentation
Show all versions of herts-http Show documentation
Herts real time framework for Http
package org.hertsstack.http;
/**
* Herts http engine
*
* @author Herts Contributer
*/
public interface HertsHttpEngine {
/**
* Start server
*/
void start();
/**
* Stop server
*
* @throws Exception If fail shutdown
*/
void stop() throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy