Apollo 10.0
自动驾驶开放平台
command_status.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.external_command;
4
6
8 // Command is being executed without error.
9 RUNNING = 1;
10 // Command is finished.
12 // Command's execution has error.
13 ERROR = 3;
14 // Cannot get the status of command.
16}
17
19 optional apollo.common.Header header = 1;
20 // Unique identification for command.
21 optional int64 command_id = 2 [default = -1];
22}
23
25 optional apollo.common.Header header = 1;
26 // Unique identification for command.
27 optional int64 command_id = 2 [default = -1];
28 // The status of command execution.
29 required CommandStatusType status = 3;
30 // The message for the status.
31 optional string message = 4;
32}
apollo::common
class register implement
Definition arena_queue.h:37