blob: 493b3c71d26c2bd5bb64151cf6fcade1074a78ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// **********************************************************************
//
// Copyright (c) 2003-2017 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(module, require, exports)
{
var Ice = require("ice").Ice;
var Test = require("Test").Test;
var AMDThrowerI = require("AMDThrowerI").AMDThrowerI;
var run = function(out, id, ready)
{
id.properties.setProperty("Ice.MessageSizeMax", "10");
id.properties.setProperty("Ice.Warn.Dispatch", "0");
id.properties.setProperty("Ice.Warn.Connections", "0");
var communicator = Ice.initialize(id);
var adapter;
var echo = Test.EchoPrx.uncheckedCast(communicator.stringToProxy("__echo:default -p 12010"));
return Ice.Promise.try(() =>
{
return communicator.createObjectAdapter("");
}
).then(adpt =>
{
adapter = adpt;
adapter.add(new AMDThrowerI(), Ice.stringToIdentity("thrower"));
return echo.setConnection();
}
).then(() =>
{
var connection = echo.ice_getCachedConnection();
connection.setCloseCallback((con) => {
// Re-establish connection if it fails (necessary for MemoryLimitException test)
echo.setConnection().then(() => echo.ice_getCachedConnection().setAdapter(adapter));
});
connection.setAdapter(adapter);
echo.ice_getCachedConnection().setAdapter(adapter);
adapter.activate();
ready.resolve();
return communicator.waitForShutdown();
}
).then(() =>
{
return echo.shutdown();
}
).finally(() => communicator.destroy());
};
exports._serveramd = run;
}
(typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? module : undefined,
typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? require : this.Ice._require,
typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? exports : this));
|