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

io.github.stylesmile.jlhttpserver.ServerLifecycle Maven / Gradle / Ivy

package io.github.stylesmile.jlhttpserver;

/**
 * 服务生命周期
 *
 * @author noear
 * @since 1.8
 */
public interface ServerLifecycle {
    /**
     * 启动
     *
     * @param host 主机(ip)
     * @param port 端口
     */
    void start(String host, int port) throws Throwable;

    /**
     * 停止
     */
    void stop() throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy