summaryrefslogtreecommitdiff
path: root/js/src/Ice/DispatchStatus.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/Ice/DispatchStatus.js')
-rw-r--r--js/src/Ice/DispatchStatus.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/Ice/DispatchStatus.js b/js/src/Ice/DispatchStatus.js
new file mode 100644
index 00000000000..3a20e36aae4
--- /dev/null
+++ b/js/src/Ice/DispatchStatus.js
@@ -0,0 +1,15 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+(function(global){
+ var Ice = global.Ice || {};
+ var DispatchStatus = {DispatchOK: 0, DispatchUserException: 1, DispatchAsync: 2};
+ Ice.DispatchStatus = DispatchStatus;
+ global.Ice = Ice;
+}(typeof (global) === "undefined" ? window : global));