diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-20 19:07:07 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-20 19:07:07 +0100 |
commit | bdb01c2c068df326f5a8328ed1492ab1bea388c5 (patch) | |
tree | 25c2ee1b29bc481b6914c244ed9ca194b1415d16 /common/commands | |
parent | 17e7ee40c9185c0505883853345fd6024c675b1a (diff) | |
download | sink-bdb01c2c068df326f5a8328ed1492ab1bea388c5.tar.gz sink-bdb01c2c068df326f5a8328ed1492ab1bea388c5.zip |
Renamed Akonadi2 to Sink
(except for documentation).
Diffstat (limited to 'common/commands')
-rw-r--r-- | common/commands/commandcompletion.fbs | 2 | ||||
-rw-r--r-- | common/commands/createentity.fbs | 2 | ||||
-rw-r--r-- | common/commands/deleteentity.fbs | 2 | ||||
-rw-r--r-- | common/commands/fetchentity.fbs | 2 | ||||
-rw-r--r-- | common/commands/handshake.fbs | 2 | ||||
-rw-r--r-- | common/commands/inspection.fbs | 2 | ||||
-rw-r--r-- | common/commands/modifyentity.fbs | 2 | ||||
-rw-r--r-- | common/commands/notification.fbs | 2 | ||||
-rw-r--r-- | common/commands/revisionreplayed.fbs | 2 | ||||
-rw-r--r-- | common/commands/revisionupdate.fbs | 2 | ||||
-rw-r--r-- | common/commands/synchronize.fbs | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/common/commands/commandcompletion.fbs b/common/commands/commandcompletion.fbs index de7ec14..6d95dbc 100644 --- a/common/commands/commandcompletion.fbs +++ b/common/commands/commandcompletion.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table CommandCompletion { | 3 | table CommandCompletion { |
4 | id: ulong; | 4 | id: ulong; |
diff --git a/common/commands/createentity.fbs b/common/commands/createentity.fbs index 5358dea..b97e8f6 100644 --- a/common/commands/createentity.fbs +++ b/common/commands/createentity.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table CreateEntity { | 3 | table CreateEntity { |
4 | entityId: string; | 4 | entityId: string; |
diff --git a/common/commands/deleteentity.fbs b/common/commands/deleteentity.fbs index 9f865be..c3a3fc7 100644 --- a/common/commands/deleteentity.fbs +++ b/common/commands/deleteentity.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table DeleteEntity { | 3 | table DeleteEntity { |
4 | revision: ulong; | 4 | revision: ulong; |
diff --git a/common/commands/fetchentity.fbs b/common/commands/fetchentity.fbs index 7a1d74d..bceafbd 100644 --- a/common/commands/fetchentity.fbs +++ b/common/commands/fetchentity.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table FetchEntity { | 3 | table FetchEntity { |
4 | revision: ulong; | 4 | revision: ulong; |
diff --git a/common/commands/handshake.fbs b/common/commands/handshake.fbs index e824715..1d0b3cb 100644 --- a/common/commands/handshake.fbs +++ b/common/commands/handshake.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table Handshake { | 3 | table Handshake { |
4 | name: string; | 4 | name: string; |
diff --git a/common/commands/inspection.fbs b/common/commands/inspection.fbs index aaae1ae..e99fc71 100644 --- a/common/commands/inspection.fbs +++ b/common/commands/inspection.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table Inspection { | 3 | table Inspection { |
4 | id: string; | 4 | id: string; |
diff --git a/common/commands/modifyentity.fbs b/common/commands/modifyentity.fbs index 03b543f..efa2fa0 100644 --- a/common/commands/modifyentity.fbs +++ b/common/commands/modifyentity.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table ModifyEntity { | 3 | table ModifyEntity { |
4 | revision: ulong; | 4 | revision: ulong; |
diff --git a/common/commands/notification.fbs b/common/commands/notification.fbs index 89687cf..ff01fc5 100644 --- a/common/commands/notification.fbs +++ b/common/commands/notification.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | enum NotificationType : byte { Shutdown = 1, Status, Warning, Progress, Inspection } | 3 | enum NotificationType : byte { Shutdown = 1, Status, Warning, Progress, Inspection } |
4 | enum NotificationCode : byte { Success = 0, Failure = 1, UserCode } | 4 | enum NotificationCode : byte { Success = 0, Failure = 1, UserCode } |
diff --git a/common/commands/revisionreplayed.fbs b/common/commands/revisionreplayed.fbs index e1b11e3..f110ff9 100644 --- a/common/commands/revisionreplayed.fbs +++ b/common/commands/revisionreplayed.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table RevisionReplayed { | 3 | table RevisionReplayed { |
4 | revision: ulong; | 4 | revision: ulong; |
diff --git a/common/commands/revisionupdate.fbs b/common/commands/revisionupdate.fbs index 93fbe34..cc092e4 100644 --- a/common/commands/revisionupdate.fbs +++ b/common/commands/revisionupdate.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table RevisionUpdate { | 3 | table RevisionUpdate { |
4 | revision: ulong; | 4 | revision: ulong; |
diff --git a/common/commands/synchronize.fbs b/common/commands/synchronize.fbs index 7c3ae9a..5528166 100644 --- a/common/commands/synchronize.fbs +++ b/common/commands/synchronize.fbs | |||
@@ -1,4 +1,4 @@ | |||
1 | namespace Akonadi2.Commands; | 1 | namespace Sink.Commands; |
2 | 2 | ||
3 | table Synchronize { | 3 | table Synchronize { |
4 | sourceSync: bool; //Synchronize with source | 4 | sourceSync: bool; //Synchronize with source |