Alexander Afanasyev | 6f70a0f | 2013-01-02 20:44:09 -0800 | [diff] [blame] | 1 | // message Name |
2 | // { | ||||
3 | // repeated bytes comp = 1; | ||||
4 | // } | ||||
5 | |||||
6 | message SyncState | ||||
7 | { | ||||
8 | // required Name name = 1; | ||||
9 | required string name = 1; | ||||
10 | |||||
11 | enum ActionType | ||||
12 | { | ||||
13 | UPDATE = 0; | ||||
14 | DELETE = 1; | ||||
15 | } | ||||
16 | required ActionType type = 2; | ||||
17 | |||||
18 | optional uint64 seq = 3; | ||||
19 | } | ||||
20 | |||||
21 | message SyncStateMsg | ||||
22 | { | ||||
23 | repeated SyncState state = 1; | ||||
24 | } |