()
| 195 | } |
| 196 | |
| 197 | @Override |
| 198 | public void close() throws Exception { |
| 199 | client_to_server.close(); |
| 200 | server_to_client.close(); |
| 201 | client_input.close(); |
| 202 | server_output.close(); |
| 203 | server_input.close(); |
| 204 | client_output.close(); |
| 205 | } |
| 206 | |
| 207 | private Simplex createClientToServerSimplex(final InputStream in, final OutputStream out) throws Exception { |
| 208 | Simplex simplex = new Simplex(in, out); |