8 lines
173 B
Protocol Buffer
8 lines
173 B
Protocol Buffer
|
package protobuf;
|
||
|
|
||
|
message ProtoLogEntry {
|
||
|
required uint64 Index=1;
|
||
|
required uint64 Term=2;
|
||
|
required string CommandName=3;
|
||
|
optional bytes Command=4; // for nop-command
|
||
|
}
|