Austin Schuh | 7bc5905 | 2020-02-16 23:48:33 -0800 | [diff] [blame^] | 1 | include "aos/configuration.fbs"; |
2 | |||||
3 | namespace aos.message_bridge; | ||||
4 | |||||
5 | table ClientOffset { | ||||
6 | node:Node; | ||||
7 | |||||
8 | monotonic_offset:int64; | ||||
9 | } | ||||
10 | |||||
11 | table Timestamp { | ||||
12 | offsets:[ClientOffset]; | ||||
13 | } | ||||
14 | |||||
15 | root_type Timestamp; |