Skip to content

Instantly share code, notes, and snippets.

@safaorhan
Created August 16, 2015 21:06
Show Gist options
  • Save safaorhan/b1f2e80fb6cc226eb072 to your computer and use it in GitHub Desktop.
Save safaorhan/b1f2e80fb6cc226eb072 to your computer and use it in GitHub Desktop.
QBHelper - Step 3
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