调试httpDns,修改上报时间间隔为500ms

This commit is contained in:
tongchenfei
2020-11-30 09:57:44 +08:00
parent 5b8957e7ce
commit 2eaf96533d
5 changed files with 42 additions and 15 deletions

View File

@@ -3,7 +3,8 @@ package com.mogo.service.connection;
public enum WebSocketMsgType {
MSG_TYPE_UPLINK_CAR_DATA(0,"自车与ADAS数据"),
MSG_TYPE_DOWNLINK_CAR_DATA(1,"服务端下发车辆信息");
MSG_TYPE_DOWNLINK_CAR_DATA(1,"服务端下发车辆信息"),
MSG_TYPE_ACK(3, "ACK");
private int msgType;
private String msg;