summaryrefslogtreecommitdiff
path: root/cli/msg.fbs
diff options
context:
space:
mode:
authorandy finch <andyfinch7@gmail.com>2019-06-13 23:43:54 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-06-13 20:43:54 -0700
commitdc60fe9f300043f191286ef804a365e16e455f87 (patch)
treec6b74e9faa6f26745b8770a18d0ae46ee34f3774 /cli/msg.fbs
parentfdd2eb538327ee3f50fe2869320411191830c985 (diff)
Refactor dispatch handling (#2452)
Promise id is now created in core and passed back to JS.
Diffstat (limited to 'cli/msg.fbs')
-rw-r--r--cli/msg.fbs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/msg.fbs b/cli/msg.fbs
index 56410097c..e034aa687 100644
--- a/cli/msg.fbs
+++ b/cli/msg.fbs
@@ -136,6 +136,8 @@ enum ErrorKind: byte {
OpNotAvaiable,
WorkerInitFailed,
UnixError,
+ NoAsyncSupport,
+ NoSyncSupport,
ImportMapError,
}
@@ -153,7 +155,6 @@ enum MediaType: byte {
}
table Base {
- cmd_id: uint32;
sync: bool = false;
error_kind: ErrorKind = NoError;
error: string;