(self)
| 176 | self.connection.sendall(encoded_data) |
| 177 | |
| 178 | def close(self) -> None: |
| 179 | if sys.platform == "win32": |
| 180 | if self.connection != _winapi.NULL: |
| 181 | _winapi.CloseHandle(self.connection) |
| 182 | else: |
| 183 | self.connection.close() |
| 184 | |
| 185 | |
| 186 | class IPCClient(IPCBase): |
no outgoing calls