blob: 2260dee925e4d8c7892e17637c30392b0c59f0c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import IceObjc
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)
}
}
|