You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
320 B
17 lines
320 B
package com.zc.websocket.constant;
|
|
|
|
/**
|
|
* 事件方法类型定义
|
|
* @author Athena-xiepufeng
|
|
*/
|
|
public class Method
|
|
{
|
|
// 登录
|
|
public static final String LOGIN = "login";
|
|
|
|
// 事件
|
|
public static final String EVENT = "event";
|
|
|
|
// 心跳
|
|
public static final String HEARTBEAT = "heartbeat";
|
|
}
|
|
|