Files
cai-server/ruoyi-websocket/src/main/java/com/ruoyi/websocket/constant/WebSocketConstants.java
张良(004796) 934a613f11 通话逻辑
2023-12-28 22:23:32 +08:00

33 lines
540 B
Java

package com.ruoyi.websocket.constant;
/**
* websocket的常量配置
*
* @author zendwang
*/
public interface WebSocketConstants {
/**
* websocketSession中的参数的key
*/
String TOKEN = "token";
String ROOM_ID = "roomId";
String USER_ID = "userId";
/**
* 订阅的频道
*/
String WEB_SOCKET_TOPIC = "global:websocket";
/**
* 前端心跳检查的命令
*/
String PING = "ping";
/**
* 服务端心跳恢复的字符串
*/
String PONG = "pong";
}