blob: 62f4b2b28d693d8a6719637c2b7bbd24d895e3a6 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace Sink.Commands;
table Synchronize {
sourceSync: bool; //Synchronize with source
localSync: bool; //Ensure all queues are processed so the local state is up-to date.
query: string;
}
root_type Synchronize;
|