
com.joe.easysocket.server.common.lambda.Endpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of socket-common Show documentation
Show all versions of socket-common Show documentation
socket框架,方便快速开发socket服务端和客户端
The newest version!
package com.joe.easysocket.server.common.lambda;
import com.joe.easysocket.server.common.exception.SystemException;
/**
* 启动、关闭接口
*
* @author joe
*/
public interface Endpoint {
/**
* 启动
*
* @throws SystemException 启动过程中有可能发生异常
*/
void start() throws SystemException;
/**
* 关闭
*
* @throws SystemException 关闭过程中有可能发生异常
*/
void shutdown() throws SystemException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy