de.yourinspiration.jexpresso.core.StarterCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jexpresso Show documentation
Show all versions of jexpresso Show documentation
A java web framework inspired by expressjs to build java web application with minimal effort
package de.yourinspiration.jexpresso.core;
/**
* Callback handler that is called after the server has started.
*
* @author Marcel Härle
*/
public interface StarterCallback {
/**
* Callback method.
*/
void handle();
}