Created
August 16, 2015 21:06
-
-
Save safaorhan/b1f2e80fb6cc226eb072 to your computer and use it in GitHub Desktop.
QBHelper - Step 3
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 OnChatHistoryLoadedListener { | |
| void onSuccess(ArrayList<QBChatMessage> messages); | |
| void onError(List<String> list); | |
| } | |
| public interface OnUnreadMessageListener { | |
| void onUnreadMessage(int unreadDialogCount); | |
| } | |
| public interface OnChatDialogsRetrievedListener { | |
| void onRetrieve(); | |
| } | |
| public interface OnNewChatMessageListener { | |
| void onNewMessage(QBChatMessage message, boolean createdLocally); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment