summaryrefslogtreecommitdiff
path: root/js/src/Ice/DispatchStatus.js
blob: 3a20e36aae4f49ba46b2797fbd3b8f6c7e0bdebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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));