1
zj
2024-07-12 bc9801d6adf582325e8213df11f597f82deda973
1
2
3
4
5
6
7
8
9
10
11
12
package server;
 
/**
 * Server生命周期服务,在应用启动和停止时调用
 */
public interface Server extends Comparable<Server>{
    public void start();
    public void stop();
    public void pause();
    public void restart();
    public boolean isRunning();
}