diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-04 11:40:24 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-04 11:40:24 +0200 |
commit | 6adf9a4734f15a2c0fa199897f76ded4659b83b7 (patch) | |
tree | 9f9c22c28e897f973d70dba29ae41bc92be51ce6 /common/commands | |
parent | feef3bd5c1562a52c274fa07af51c716e5362054 (diff) | |
download | sink-6adf9a4734f15a2c0fa199897f76ded4659b83b7.tar.gz sink-6adf9a4734f15a2c0fa199897f76ded4659b83b7.zip |
Added progress notification
Diffstat (limited to 'common/commands')
-rw-r--r-- | common/commands/notification.fbs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/commands/notification.fbs b/common/commands/notification.fbs index 517111c..7ced666 100644 --- a/common/commands/notification.fbs +++ b/common/commands/notification.fbs | |||
@@ -5,6 +5,8 @@ table Notification { | |||
5 | identifier: string; //An identifier that links back to the something related to the notification (e.g. a command id) | 5 | identifier: string; //An identifier that links back to the something related to the notification (e.g. a command id) |
6 | message: string; | 6 | message: string; |
7 | code: int = 0; //See notification.h | 7 | code: int = 0; //See notification.h |
8 | progress: int = 0; //See notification.h | ||
9 | total: int = 0; //See notification.h | ||
8 | entities: [string]; //A list of entities this applies to | 10 | entities: [string]; //A list of entities this applies to |
9 | } | 11 | } |
10 | 12 | ||