summaryrefslogtreecommitdiffstats
path: root/common/queuedcommand.fbs
blob: 06226d3ec5cbfc72fec74191b70d91ec145098fd (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Sink;

table QueuedCommand {
    commandId: int;
    command: [ubyte];
    // entityId: string;
    // sourceRevision: ulong;
    // targetRevision: [ubyte];
}

root_type QueuedCommand;