logo
On this page

Get the conversation list


Overview

Conversation, typically is the logical relationship automatically established by the ZIM SDK when a user sends a "single chat/group" message. Only the following message types can be used to establish a conversation:

Message TypeConversation Types
Text Messages
  • One-to-one Conversation
  • Group Conversation
Rich Media Messages(Including image, audio, video, file)
Combined Messages
Custom Messages
Explanation
If a user inserts a local message before the conversation exists, a local conversation will be created. When the user gets the conversation list from the local database, these local sessions will be retrieved.

ZIM supports users to listen for conversation changes and get a conversation list from the local database. It also supports developers to retrieve the complete conversation list of a specific user from the ZIM server.

You can obtain and display the one-on-one and group chat conversation lists in scenarios such as chats, gaming communities, and online consulting.

Listen for conversation changes

Before logging in, users should listen for the callback OnConversationChanged, After login, the users will receive notifications of conversation changes when the following events happen:

CategoryEventEvent ValueZIMConversation Property
Basic Conversation PropertiesChange conversation name.Updated
Change conversation avatar URL.conversationAvatarUrl
  • When a user sets a remark (friendAlias) for a friend, the ZIM SDK synchronously modifies the corresponding alias of the one-on-one conversation.
  • When a user sets a remark (groupAlias) for a group, the ZIM SDK will synchronize and modify the corresponding conversation alias for the group chat.
conversationAlias
Change unread message count.unreadMessageCount
Additional Conversation PropertiesUser sets/cancels a conversation as pinned.isPinned
User sets notification status for a conversation.notificationStatus
User saves a conversation draft.draft
User is mentioned in a conversation.mentionedInfoList
Last Message in Conversation ChangesUser receives a new message.lastMessage
User sends a new message.
Last message status or content changes.
Conversation Status ChangesUser has a new conversation.Added-

User voluntarily leaves/is kicked out of a group conversation.

Note

This assumes that the group conversation already exists (i.e., there are messages in the conversation).

Disabled-

Group conversation is dissolved.

Note

This assumes that the group conversation already exists (i.e., there are messages in the conversation).

Recipient user does not exist when sending a one-on-one message.
User sends a message to a group they have not joined.
User deletes a conversation.Deleted-

At this time, you can get the conversation list based on your demands.

Note

Currently, the callback OnConversationChanged only supports notification of incremental changes of the conversation list in the local database and the conversation list on the ZIM server.

You need to maintain the array of conversation lists retrieved from the queryConversationList method, and based on current conversation updates, perform property changes, inserts, and sorted displays .

Untitled
ZIM.GetInstance().onConversationChanged = (
    ZIM zim, List<ZIMConversationChangeInfo> conversationChangeInfoList) =>
{
    // Notification of the conversation changes.
};
1
Copied!

Get the conversation list

ZIM supports developers to call SDK interfaces to retrieve the current user's conversation list from the local database. It also supports making requests to the ZIM server to retrieve the complete conversation list of a specific user.

After fetching the conversation list, developers can use it to customize the UI display of the conversation list.

From the local database

Note
  • The ZIM SDK currently only supports fetching one-to-one and group conversation lists, and does not support fetching the room conversation list.
  • The conversation list is stored in the local database, and when getting the conversation list, relevant data will be retrieved from the local database.
  • It is recommended for you to use this feature on the first screen of the conversation page.

After login, if users want to know what conversations they have joined, they can call the queryConversationList method to query the conversation list.

To avoid the problem of pulling too many conversations at the same time, which takes a long time and causes slow loading of the conversation interface, you can customize the number of conversations by setting the ZIMConversationQueryConfig object for paging query when pulling conversations.

Untitled
ZIMConversationQueryConfig config = new ZIMConversationQueryConfig();
// Conversation anchor, pass null to start querying from the latest
config.nextConversation = null;
// Number of conversations to query at a time
config.count = 20;

// Retrieve the conversation list
ZIM.GetInstance().QueryConversationList(config, (List<ZIMConversation> conversationList,
                   ZIMError errorInfo) => 
{
        // Callback of the retrieval result
});
1
Copied!

From the ZIM server

You can get a user's conversation list by calling the server API. For more details, please refer to the server API documentation Query conversation list

Previous

Call invitation (signaling)

Next

Manage unread message counts