Ben Fredrickson | d69f38b | 2015-01-28 20:06:15 -0800 | [diff] [blame] | 1 | package aos.common.actions; |
2 | |||||
3 | import "aos/common/actions/actions.q"; | ||||
4 | |||||
5 | queue_group TestActionQueueGroup { | ||||
6 | implements aos.common.actions.ActionQueueGroup; | ||||
7 | |||||
8 | message Goal { | ||||
9 | uint32_t run; | ||||
10 | double test_value; | ||||
11 | }; | ||||
12 | |||||
13 | queue Goal goal; | ||||
14 | queue aos.common.actions.Status status; | ||||
15 | }; | ||||
16 | |||||
17 | queue_group TestActionQueueGroup test_action; |