blob: d442c5739d187320506968abbd1105ca2630d36d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import Dispatch
import Ice
import TestCommon
class Server: TestHelperI {
public override func run(args: [String]) throws {
let communicator = try initialize(args)
defer {
communicator.destroy()
}
communicator.getProperties().setProperty(key: "TestAdapter.Endpoints", value: getTestEndpoint(num: 0))
let adapter = try communicator.createObjectAdapter("TestAdapter")
try adapter.add(servant: TestIntfDisp(TestI()), id: Ice.stringToIdentity("test"))
try adapter.activate()
serverReady()
communicator.waitForShutdown()
}
}
|