Skip to content

Instantly share code, notes, and snippets.

@LNA
Created February 11, 2015 08:06
Show Gist options
  • Save LNA/b0645ed1f9f4aeac6646 to your computer and use it in GitHub Desktop.
Save LNA/b0645ed1f9f4aeac6646 to your computer and use it in GitHub Desktop.
public interface iSocket {
public iSocket accept() throws IOException;
public InputStream getInputStream() throws IOException;
public OutputStream getOutputStream() throws IOException;
public void close() throws IOException;
public boolean isClosed();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment