Back to project page dcchat.
The source code is released under:
Apache License
If you think the Android project dcchat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package interfaces; // w w w . j av a 2s . c o m import net.kaleidos.dcchat.Message; public interface NotificationListener { public void broadcastMessageReceived(Message message); public void directMessageReceived(Message message); public void error(String error); public void userConnected(String userSid, String userNick); public void userDisconnected(String userSid); public void serverDisconnect(); }