blob: 26095e18f6ae24edf9b3f77d43d36262e101c80f [file] [log] [blame]
Alexander Afanasyev6f70a0f2013-01-02 20:44:09 -08001message SyncState
2{
Alexander Afanasyevd09871f2013-01-04 22:36:37 -08003 required bytes name = 1;
Alexander Afanasyev6f70a0f2013-01-02 20:44:09 -08004
5 enum ActionType
6 {
7 UPDATE = 0;
8 DELETE = 1;
9 }
10 required ActionType type = 2;
11
12 optional uint64 seq = 3;
Zhenkai Zhue851b952013-01-13 22:29:57 -080013 optional bytes locator = 4;
Alexander Afanasyev6f70a0f2013-01-02 20:44:09 -080014}
15
16message SyncStateMsg
17{
18 repeated SyncState state = 1;
19}