summaryrefslogtreecommitdiffstats
path: root/common/metadata.fbs
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2015-12-29 10:01:42 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2015-12-29 10:01:42 +0100
commit664fb0fbfd21a25d1f86938a186f6ec9cea6d882 (patch)
treed819fb4eba44da46fd9c9e9d5bd051e0124f68ee /common/metadata.fbs
parent1998b8d35478205118cea5cc215c682b235434f1 (diff)
downloadsink-664fb0fbfd21a25d1f86938a186f6ec9cea6d882.tar.gz
sink-664fb0fbfd21a25d1f86938a186f6ec9cea6d882.zip
Mark commands with whether they need to be replayed
This way we don't have to try to figure out whether a change is coming from the source already.
Diffstat (limited to 'common/metadata.fbs')
-rw-r--r--common/metadata.fbs3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/metadata.fbs b/common/metadata.fbs
index 1455238..0a709fe 100644
--- a/common/metadata.fbs
+++ b/common/metadata.fbs
@@ -4,8 +4,7 @@ enum Operation : byte { Creation = 1, Modification, Removal }
4 4
5table Metadata { 5table Metadata {
6 revision: ulong; 6 revision: ulong;
7 processed: bool = true; 7 replayToSource: bool = true;
8 processingProgress: [string];
9 operation: Operation = Modification; 8 operation: Operation = Modification;
10} 9}
11 10