Public Member Functions | |
void | onSyncServerStart () |
void | onSyncServerFinish () |
void | onSyncServerFailed () |
void | onNewConversation (List< V2TIMConversation > conversationList) |
void | onConversationChanged (List< V2TIMConversation > conversationList) |
void | onConversationDeleted (List< String > conversationIDList) |
void | onTotalUnreadMessageCountChanged (long totalUnreadCount) |
void | onUnreadMessageCountChangedByFilter (V2TIMConversationListFilter filter, long totalUnreadCount) |
void | onConversationGroupCreated (String groupName, List< V2TIMConversation > conversationList) |
void | onConversationGroupDeleted (String groupName) |
void | onConversationGroupNameChanged (String oldName, String newName) |
void | onConversationsAddedToGroup (String groupName, List< V2TIMConversation > conversationList) |
void | onConversationsDeletedFromGroup (String groupName, List< V2TIMConversation > conversationList, int reason) |
void | onConversationsDeletedFromGroup (String groupName, List< V2TIMConversation > conversationList) |
|
inline |
The SDK started to synchronize server conversations. The SDK automatically synchronizes server conversations after a successful login or network reconnection. You can monitor this event and display information about the progress on the UI.
|
inline |
Server conversations have been synchronized. If a conversation changes, the SDK will notify you via onNewConversation or onConversationChanged.
|
inline |
Server conversation synchronization failed
|
inline |
A new conversation was added. This occurs when, for example, the user received a one-to-one chat message from a new colleague or was added to a new group. You can resort conversations based on "orderKey".
conversationList | Conversation list |
|
inline |
The key information of some conversations changed. This occurs when, for example, the unread message count of a conversation changes or the last message is updated. You can resort conversations based on "orderKey".
conversationList | Conversation list |
|
inline |
Conversations are deleted. (supported by 7.2 and later versions)
|
inline |
Notify the changes of the total unread message count of all conversations (supported by 5.3.425 and later versions)
|
inline |
Notify the changes of the total unread message count of conversations by filter (supported by 7.0 and later versions)
|
inline |
Conversation group has been created.
|
inline |
Conversation group has been deleted.
|
inline |
Conversation group name has been changed
|
inline |
New conversations have been added to this conversation group.
|
inline |
Conversations have been deleted from this conversation group.
|
inline |
Conversations have been deleted from this conversation group.(This API will be deprecated. Please call onConversationsDeletedFromGroup(String, List<V2TIMConversation>, int) instead)