仪表盘
版本库
文件存储
活动
搜索
登录
main
/
smart
数据采集
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
代码优化
yangys
2024-05-18
cc0bdfb33ef638dfafe3185c92c7076d815e1c9b
[smart.git]
/
smart-starter-websocket
/
src
/
main
/
java
/
com
/
qianwen
/
core
/
websocket
/
message
/
PingJsonWebSocketMessage.java
1
2
3
4
5
6
7
package com.qianwen.core.websocket.message;
public class PingJsonWebSocketMessage extends AbstractJsonWebSocketMessage {
public PingJsonWebSocketMessage() {
super(WebSocketMessageTypeEnum.PING.getValue());
}
}