Created
December 29, 2014 19:06
-
-
Save RX14/b046d5243255ca5b3679 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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