getConversationList
API (details) to get the conversation list. This API pulls locally cached conversations. If any server conversation is updated, the SDK will automatically sync the update and notify you in the V2TIMConversationListener
callback.V2TIMConversation
objects. Currently, the Chat SDK sorts conversations according to the following rules:orderKey
conversation object by default. The greater the orderKey
value of a conversation, the higher position the conversation is in the list. The orderKey
field is an integer that increases as the conversation is activated when a message is sent/received, a draft is set, or the conversation is pinned to the top.lastMessage
-> timestamp
by default. The later the timestamp, the higher the order of the conversation.lastMessage
of a conversation might be empty, such as when the messages in the conversation are cleared. If you use the SDK earlier than v3.8.0, you need to handle the exception when sorting the conversations by lastMessage
. We recommend you upgrade the SDK to v3.8.0 or later and sort the conversations by orderKey
.getConversationList
to implement one-time or paged pull as detailed below.count
of the pull to INT_MAX
(which is generally greater than the number of conversations).V2TimValueCallback<V2TimConversationResult> convList = await TencentImSDKPlugin.v2TIMManager.getConversationManager().getConversationList(nextSeq: '0',count: 100);
getConversationList
API is called for the first time, you can set the nextSeq
parameter to 0
(pulling the conversation list from the beginning) and set count
to 50
(pulling 50 conversation objects at a time).V2TIMConversationResult
callback of getConversationList
will contain nextSeq
(field for the next pull) and isFinished
(indicating whether the conversation pull is completed).isFinished
is true
, all conversations have been pulled.isFinished
is false
, more conversations can be pulled. This does not mean that the next page of the conversation list will be pulled immediately. In common communications software, pulling by page is often triggered by your swipe operations. Your each swipe on the conversation list triggers the pulling by page once.getConversationList
API and pass in the nextSeq
and count
parameters (the values are from the V2TIMConversationResult
object returned by the last pull) for the next pull.isFinished
is true
.// Get the conversation listV2TimValueCallback<V2TimConversationResult> getConversationListRes =await TencentImSDKPlugin.v2TIMManager.getConversationManager().getConversationList(count: 100, // Number of conversations pulled per page. The value of this field cannot be too large; otherwise, the pulling speed is affected. We recommend that you pull 100 conversations per page.nextSeq: "0" // Pulling-by-page cursor. It is set to 0 when the conversation is pulled for the first time. The value of this field in the callback for the current paginated pulling is passed in for the next pull.);if (getConversationListRes.code == 0) {// Pulled successfullybool? isFinished = getConversationListRes.data?.isFinished; // Whether the list is fully pulledString? nextSeq = getConversationListRes.data?.nextSeq; // Cursor for the subsequent paged pullList<V2TimConversation?>? conversationList =getConversationListRes.data?.conversationList; // List of conversations pulled this time// If more conversations need to be pulled, use the returned `nextSeq` to continue pulling until `isFinished` is `true`.if (!isFinished!) {V2TimValueCallback<V2TimConversationResult> nextConversationListRes =await TencentImSDKPlugin.v2TIMManager.getConversationManager().getConversationList(count: 100, nextSeq: nextSeq = "0"); // Use the returned `nextSeq` to continue pulling until `isFinished` is `true`.}getConversationListRes.data?.conversationList?.forEach((element) {element?.conversationID; // Unique conversation ID. It is in the format of `c2c_userID` for a one-to-one chat or `group_groupID` for a group chat.element?.draftText; // Draft messageelement?.draftTimestamp; // Draft editing time. It is automatically generated when a draft is set.element?.faceUrl; // Displayed conversation profile photo. It is the group profile photo for a group chat or the profile photo of the message receiver for a one-to-one chat.element?.groupAtInfoList; // List of @ information in the group conversation. Generally, it is used to display the notifications of "someone@me" and "@all".element?.groupID; // ID of the current group. If the conversation type is group chat, `groupID` is the ID of the current group. Otherwise, it is `null`.element?.groupType; // Type of the current group. If the conversation type is group chat, `groupType` is the type of the current group. Otherwise, it is `null`.element?.isPinned; // Whether the conversation is pinned to the topelement?.lastMessage; // Last message in the conversationelement?.orderkey; // Field for sorting conversationselement?.recvOpt; // Message receiving optionelement?.showName; // Displayed conversation name. The name of a group chat is displayed in the following order of priority: group name > group ID. The name of a one-to-one chat is displayed in the following order of priority: friend remarks of the message receiver > nickname of the message receiver > `userID` of the message receiver.element?.type; // Conversation type, which can be `C2C` (one-to-one chat) or `Group` (group chat).element?.unreadCount; // Unread message count of the conversation. It is invalid and defaults to `0` for an audio-video group (AVChatRoom).element?.userID; // User ID of the message receiver. If the conversation type is one-to-one chat, `userID` is the user ID of the message receiver. Otherwise, it is `null`.});}
addConversationListener
API (details) to add a conversation listener to receive conversation change events.TencentImSDKPlugin.v2TIMManager.getConversationManager().addConversationListener(listener: V2TimConversationListener(onConversationChanged: (conversationList) {},// Others ));
V2TIMConversationListener
(details) to get the notification of a conversation list change.Event | Description | Suggestion |
onSyncServerStart | Server conversation sync started. | The SDK will automatically sync server conversations after a successful login or network reconnection. You can listen for such an event and display the event progress on the UI. |
onSyncServerFinish | Server conversation sync was completed. | If there is a conversation change, the change will be notified through the onNewConversation /onConversationChanged callback. |
onSyncServerFailed | Server conversation sync failed. | You can listen for such an event and display the event exception on the UI. |
onNewConversation | A new conversation was added. | When the user receives a one-to-one message from a new colleague or is invited to a new group, you can re-sort the conversations. |
onConversationChanged | There is a conversation update. | When the unread count changes or the last message is updated, you can re-sort the conversations. |
onTotalUnreadMessageCountChanged | The total unread message count of all conversations has changed. | |
onConversationGroupCreated | The conversation group was created. | Relevant capabilities of the conversation group. |
onConversationGroupDeleted | The conversation group was deleted. | Relevant capabilities of the conversation group. |
onConversationGroupNameChanged | The conversation group name was changed. | Relevant capabilities of the conversation group. |
onConversationsAddedToGroup | Adding a conversation to the conversation group. | Relevant capabilities of the conversation group. |
onConversationsDeletedFromGroup | Deleting a conversation from the conversation group. | Relevant capabilities of the conversation group. |
lastMessage
, but note that sometimes lastMessage
may be empty (such as when messages in a conversation are cleared).orderKey
.// Set a group event listenerV2TimGroupListener listener = V2TimGroupListener(onApplicationProcessed:(String groupID, V2TimGroupMemberInfo opUser, bool isAgreeJoin,String opReason) async {// Group joining request handled by group owner or admin (received only by the applicant)// groupID: Group ID// opUser: Handler// isAgreeJoin: Whether to agree to join the group// opReason: Handling reason}, onGrantAdministrator: (String groupID, V2TimGroupMemberInfo opUser,List<V2TimGroupMemberInfo> memberList) async {// Specify the admin identity// groupID: Group ID// opUser: Handler// memberList: Group members handled}, onGroupAttributeChanged:(String groupID, Map<String, String> groupAttributeMap) async {// Received group attribute update callback// groupID: Group ID// groupAttributeMap: All attributes of the group}, onGroupCreated: (String groupID) async {// Group created (used for multi-device synchronization)// groupID: Group ID}, onGroupDismissed: (String groupID, V2TimGroupMemberInfo opUser) async {// The group is deleted (received by all users)// groupID: Group ID// opUser: Handler}, onGroupInfoChanged:(String groupID, List<V2TimGroupChangeInfo> changeInfos) async {// Group information modified (received by all members)// groupID: Group ID// changeInfos: Group information modified}, onGroupRecycled: (String groupID, V2TimGroupMemberInfo opUser) async {// Group repossessed (received by all members)// groupID: Group ID// opUser: Handler}, onMemberEnter:(String groupID, List<V2TimGroupMemberInfo> memberList) async {// Users join the group (received by all members)// groupID: Group ID// memberList: Members who join the group}, onMemberInfoChanged: (String groupID,List<V2TimGroupMemberChangeInfo> v2TIMGroupMemberChangeInfoList) async {// Group member information modified, supporting notifications for muting only (received by all members)// groupID: Group ID// v2TIMGroupMemberChangeInfoList: Group member information modified}, onMemberInvited: (String groupID, V2TimGroupMemberInfo opUser,List<V2TimGroupMemberInfo> memberList) async {// Users are added to a group by others (received by all members)// groupID: Group ID// opUser: Handler// memberList: Members who are added to the group}, onMemberKicked: (String groupID, V2TimGroupMemberInfo opUser,List<V2TimGroupMemberInfo> memberList) async {// Users are removed from a group by others (received by all members)// groupID: Group ID// opUser: Handler// memberList: Members who are removed from the group}, onMemberLeave: (String groupID, V2TimGroupMemberInfo member) async {// Users leave the group (received by all members)// groupID: Group ID// member: Members who leave the group}, onQuitFromGroup: (String groupID) async {// Leave a group (mainly used for multi-device synchronization, not supported by audio-video groups)// groupID: Group ID}, onReceiveJoinApplication:(String groupID, V2TimGroupMemberInfo member, String opReason) async {// New group joining request (received only by the group owner and admin)// groupID: Group ID// member: Applicant// opReason: Request reason}, onReceiveRESTCustomData: (String groupID, String customData) async {// Received a custom system message delivered via the RESTful API// groupID: Group ID// customData: Custom data}, onRevokeAdministrator: (String groupID, V2TimGroupMemberInfo opUser,List<V2TimGroupMemberInfo> memberList) async {// Cancel the admin identity// groupID: Group ID// opUser: Handler// memberList: Group members handled}, onTopicCreated: (String groupID, String topicID) async {// Topic creation notification// groupID: ID of the group for which the topic is created// topicID: ID of the topic created}, onTopicDeleted: (String groupID, List<String> topicIDList) async {// Topic deletion notification// groupID: ID of the group for which the topic is deleted// topicIDList: List of IDs of the topics deleted}, onTopicInfoChanged: (String groupID, V2TimTopicInfo topicInfo) async {// Topic information update notification// groupID: ID of the group for which the topic information is updated// topicInfo: Attributes updated in the topic information});// Add a group event listenerTencentImSDKPlugin.v2TIMManager.addGroupListener(listener: listener);
removeConversationListener
API (details) to remove a conversation listener to stop receiving conversation change events.
This step is optional and can be performed as needed.conversationManager.removeConversationListener(conversationListener);
lastMessage
of V2TIMConversation
as the data source for implementation. However, in some cases, if you don't want some messages (such as system tips) to be displayed as the latest message in a conversation, you can set isExcludedFromLastMessage
to false
/no
when calling sendMessage
.isExcludedFromLastMessage
is supported only by the SDK for Flutter on v4.0.0 or later.
Was this page helpful?