summaryrefslogtreecommitdiff
path: root/msg.proto
diff options
context:
space:
mode:
authorParsa Ghadimi <me@qti3e.com>2018-05-23 23:23:41 +0430
committerRyan Dahl <ry@tinyclouds.org>2018-05-23 17:07:20 -0400
commitcb222ceb227f5a7f5307085bcbebfa3cdb049598 (patch)
tree312f3a1c46af2c668d68881ea62f56ac27d99b9d /msg.proto
parent3171ba4c3ff4046aaca0d70321f1dfec4c0728bb (diff)
Adds setInterval, clearInterval, clearTimeout.
Diffstat (limited to 'msg.proto')
-rw-r--r--msg.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/msg.proto b/msg.proto
index 081b2df8c..68ff52255 100644
--- a/msg.proto
+++ b/msg.proto
@@ -16,6 +16,7 @@ message Msg {
ExitMsg exit = 14;
TimerStartMsg timer_start = 15;
TimerReadyMsg timer_ready = 16;
+ TimerClearMsg timer_clear = 17;
}
}
@@ -60,3 +61,5 @@ message TimerReadyMsg {
optional int32 id = 1;
optional bool done = 2;
}
+
+message TimerClearMsg { optional int32 id = 1; }