in.hocg.netty.server.netty.NettyServer Maven / Gradle / Ivy
package in.hocg.netty.server.netty;
/**
* Created by hocgin on 2019/3/2.
* email: [email protected]
*
* @author hocgin
*/
public interface NettyServer {
/**
* 启动
*/
void start();
/**
* 摧毁
*/
void destroy();
}