dashboard
repositories
filestore
activity
search
login
main
/
xinbi-new
本地新币代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
zj
2025-04-01
610c76c7d87d0140a21bb10d644597f615d9d8c5
[xinbi-new.git]
/
src
/
main
/
java
/
server
/
Server.java
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();
}