/** Destroys the server stored list. */ @Override public void destroy() { stopped = true; try { if (connection != null) { connection.shutdownInput(); connection.close(); connection = null; } } catch (IOException e) { } try { if (connectionReader != null) { connectionReader.close(); connectionReader = null; } } catch (IOException ex) { } if (connectionWriter != null) { connectionWriter.close(); connectionWriter = null; } }
public void shutdownInput() throws IOException { mSocket.shutdownInput(); }