Skip to content

Instantly share code, notes, and snippets.

@RX14
Created December 29, 2014 19:06
Show Gist options
  • Save RX14/b046d5243255ca5b3679 to your computer and use it in GitHub Desktop.
Save RX14/b046d5243255ca5b3679 to your computer and use it in GitHub Desktop.
public interface IConnectionManager {
public List<String> getChannels();
public void joinChannel(String channel);
public boolean leaveChannel(String channel);
public Iterator<PrivateMessage> getMessageIterator(String channel);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment