
com.joe.easysocket.client.core.SocketEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of socket-client Show documentation
Show all versions of socket-client Show documentation
socket框架,方便快速开发socket服务端和客户端
The newest version!
package com.joe.easysocket.client.core;
/**
* @author joe
*/
public enum SocketEvent {
RECEIVE("收到消息"), FAILD("连接异常,断开连接"), REGISTER("连接注册成功"), UNREGISTER("连接被客户端主动注销"), RECONNECT("断线重连");
private String status;
SocketEvent(String status) {
this.status = status;
}
@Override
public String toString() {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy