|
@@ -29,6 +29,22 @@ message SyncResponse {
|
|
map<string, bytes> Values = 3; // status=false时才有值
|
|
map<string, bytes> Values = 3; // status=false时才有值
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// 客户端发送实时消息
|
|
|
|
+message DMessageRequest {
|
|
|
|
+ repeated uint32 UserIDs = 1;
|
|
|
|
+ map<string, bytes> Values = 2;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// 服务器响应用户实时消息结果
|
|
|
|
+message DMessageResponse {
|
|
|
|
+ Result Result = 1;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// 服务器转发实时消息
|
|
|
|
+message DMessagePush {
|
|
|
|
+ map<string, bytes> Values = 1;
|
|
|
|
+}
|
|
|
|
+
|
|
// 同步消息推送
|
|
// 同步消息推送
|
|
message SyncPush {
|
|
message SyncPush {
|
|
uint64 Step = 1;
|
|
uint64 Step = 1;
|