公告板
版本库
filestore
活动
搜索
登录
pubsub
/
protomsg
protobuf 定义的协议格式
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
photobuf protocol to set sdk message
龙赣华
2019-05-09
34db8697646d41c1dc26aecdc6ffc00f0efbfdb4
[pubsub/protomsg.git]
/
test.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";
package protomsg;
message TaskLabel {
string taskid = 1;
repeated string sdkids = 2;
int32 index = 3 ;
}
message SdkMessage {
string cid = 1;
TaskLabel tasklab = 2;
bytes data =3 ;
}