blob: ccd7f40e85c6178bb8915c87a449e66c64989814 [file] [log] [blame]
Austin Schuh7bc59052020-02-16 23:48:33 -08001include "aos/configuration.fbs";
2
3namespace aos.message_bridge;
4
5table ClientOffset {
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08006 node:Node (id: 0);
Austin Schuh7bc59052020-02-16 23:48:33 -08007
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08008 monotonic_offset:int64 (id: 1);
Austin Schuh7bc59052020-02-16 23:48:33 -08009}
10
11table Timestamp {
Ravago Jonesfb6a7a52020-11-14 13:47:46 -080012 offsets:[ClientOffset] (id: 0);
Austin Schuh7bc59052020-02-16 23:48:33 -080013}
14
15root_type Timestamp;