feat(scheduler): begin to implement task scheduler per #8
Signed-off-by: zontreck <tarapiccari@gmail.com>
This commit is contained in:
parent
3d924423dd
commit
6fd72c2017
6 changed files with 131 additions and 21 deletions
|
@ -1,11 +1,22 @@
|
|||
integer LINK_SIGNAL_SETTINGS = 0904241;
|
||||
integer LINK_SIGNAL_REBOOT = 0904242;
|
||||
integer LINK_SIGNAL_CALLBACKS = 0904243;
|
||||
|
||||
|
||||
string OP_SETTINGS_WRITE = "settings_write";
|
||||
string OP_SETTINGS_READ = "settings_read";
|
||||
string OP_SETTINGS_REQUEST = "settings_req";
|
||||
string OP_SETTINGS_RESPONSE = "settings_resp";
|
||||
string OP_SETTINGS_RESPONSE = "settings_empty";
|
||||
string OP_SETTINGS_DELETE = "settings_del";
|
||||
string OP_SETTINGS_RESET = "settings_reset";
|
||||
string OP_SETTINGS_WRITE = "1";
|
||||
string OP_SETTINGS_READ = "2";
|
||||
string OP_SETTINGS_REQUEST = "3";
|
||||
string OP_SETTINGS_RESPONSE = "4";
|
||||
string OP_SETTINGS_RESPONSE = "5";
|
||||
string OP_SETTINGS_DELETE = "6";
|
||||
string OP_SETTINGS_RESET = "7";
|
||||
|
||||
string OP_CALLBACK_SCHEDULE = "1";
|
||||
string OP_CALLBACK_CANCEL = "2";
|
||||
string OP_CALLBACK_CHK_STATUS = "3";
|
||||
string OP_CALLBACK_READY = "4";
|
||||
string OP_CALLBACK = "5";
|
||||
|
||||
|
||||
|
||||
string EMPTY_JSON = "{}";
|
Loading…
Add table
Add a link
Reference in a new issue