blob: 7c8cbd3bd6b95a0a037f1826bbc75bc6a36fd1e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import IceImpl
class ProcessI: LocalObject<ICEProcess>, Process {
func shutdown(current _: Current) {
handle.shutdown()
}
func writeMessage(message: Swift.String, fd: Swift.Int32, current _: Current) {
handle.writeMessage(message, fd: fd)
}
}
|