please select
  • UIKit
  • SDK
  • Server APIs
Chat/
SDK/
Unity(Game Solution)/
Conversation/
SDK
  • Run Demo
  • SDK Integration
  • Initialization
  • Login and Logout
  • Message
    • Message Overview
    • Sending Message
    • Receiving Message
    • Historical Message
    • Forwarding Message
    • Modifying Message
    • Deleting Message
    • Clearing Messages
    • Recalling Message
    • Online Message
    • Read Receipt
    • Querying Message
    • Group @ Message
    • Targeted Group Message
    • Notification Muting
    • Message Extension
  • Conversation
    • Conversation Overview
    • Conversation List
    • Getting Conversation
    • Conversation Unread Count
    • Pinning Conversation to the Top
    • Deleting Conversation
    • Conversation Draft
    • Conversation Mark
    • Conversation Group
  • Group
    • Group Overview
    • Group Management
    • Group Profile
    • Group Member Management
    • Group Member Profile
    • Custom Group Attribute
    • Group Counter
  • User
    • User Profile
    • User Status
    • Friend Management
    • Friend List
    • Blocklist
  • Changelog
  • Guideline for Beginners
  • Console Guide
    • Creating and Upgrading an Application
    • Basic Configuration
    • Feature Configuration
    • Account Management
    • Group Management
    • Webhook Configuration
  • Product Introduction
    • Message Management
      • One-to-One Message
      • Message Storage
      • Offline Push
      • Group Message
      • Message Formats
    • Account System
      • Login Authentication
      • Online Status Management
    • Group Related
      • Group System
      • Group Management
    • User Profile and Relationship Chain
      • Profile Management
      • Relationship Chain Management
  • Purchase Guide
    • Billing Overview
    • Pricing
  • Error Codes

Conversation Unread Count

Feature Description

A user's conversation list usually contains multiple conversations. If there is a new message in one of the conversations, a badge needs to be displayed in the list cell to indicate the unread count. After the user clicks to enter the conversation and goes back to the conversation list, the unread count is cleared, and the badge disappears. In some applications, the total unread count of all the conversations is calculated and displayed at the bottom tab of the conversation list.
This document describes how to implement the conversation unread count notification feature.

Getting the Total Unread Count of All the Conversations

In general cases, to get the total unread count of all the conversations, you can traverse the conversation list to get the ConvInfo information of each conversation and add the conv_unread_num values of all the ConvInfo objects to get the final result and display it on the UI. The IM SDK provides the ConvGetTotalUnreadMessageCount API to query the total unread count of all the conversations. When the total unread count changes, the SDK will notify you of the latest total unread count through the SetConvTotalUnreadMessageCountChangedCallback callback.
Below are detailed steps.

Getting the total unread count

Call ConvGetTotalUnreadMessageCount (Details) to get the total unread count of all the conversations and update it on the UI.
Sample code:
// Get the total unread count
TIMResult res = TencentIMSDK.ConvGetTotalUnreadMessageCount((int code, string desc, GetTotalUnreadNumberResult unread, string user_data)=>{
// Process the async logic
});

Notification of a change in the total unread count

Call SetConvTotalUnreadMessageCountChangedCallback (Details) to add a conversation listener to receive notifications of a change in the total unread count.
Sample code:
TencentIMSDK.SetConvTotalUnreadMessageCountChangedCallback((int total_unread_count, string user_data)=>{
// Process the callback logic
});

Clearing the Conversation Unread Count

After the user clicks to enter a conversation and goes back to the conversation list, the unread count needs to be cleared, after which the badge in the conversation list needs to disappear. The IM SDK provides three APIs to clear the unread count for different conversation types:
MsgReportReaded is used to clear the unread count of a one-to-one conversation.
MsgSendMessageReadReceipts is used to clear the unread count of a group conversation.
MsgMarkAllMessageAsRead is used to clear the unread count of all the conversations.
Below are detailed steps.

One-to-one chat

Call MsgReportReaded (Details) to clear the unread count of a specified one-to-one conversation.
Sample code:
// `message` can be set to `null`. In that case, the timestamp of the latest message (if any) in the conversation or the current time is used as the read timestamp for reporting. If a message needs to be specified, the timestamp of this specified message is used as the read timestamp for reporting. We recommend you use the message JSON content in the message array obtained from the received new message or the message JSON content located by the message locator; otherwise, repeated message JSON content will be constructed.
TIMResult res = TencentIMSDK.MsgReportReaded(conv_id, TIMConvType TIMConvType.kTIMConv_C2C, null, (int code, string desc, string user_data)=>{
// Process the async logic
});
After MsgReportReaded is called successfully:
1. If the caller has called SetConvEventCallback to add a conversation listener, it will receive the ConvEventCallback callback and update the UI.
2. The sender will receive the MsgReadedReceiptCallback callback that contains the timestamp when the conversation unread count is cleared.

Group chat

Call MsgSendMessageReadReceipts (Details) to clear the unread count of a specified group conversation.
Sample code:
TIMResult res = TencentIMSDK.MsgSendMessageReadReceipts(msg_array, (int code, string desc, string user_data)=>{
// Process the async logic
});
After MsgReportReaded is called successfully:
1. If the caller has called SetConvEventCallback to add a conversation listener, it will receive the ConvEventCallback callback and update the UI.
2. The sender will receive the MsgReadedReceiptCallback callback that contains the timestamp when the conversation unread count is cleared.

All conversations

Call MsgMarkAllMessageAsRead (Details) to clear the unread count of all the conversations.
Sample code:
TIMResult res = TencentIMSDK.MsgMarkAllMessageAsRead((int code, string desc, string user_data)=>{
// Process the async logic
});
After MsgMarkAllMessageAsRead is called successfully, if the caller has called SetConvEventCallback to add a conversation listener, it will receive the ConvEventCallback callback and update the UI.
Sample code:
TencentIMSDK.SetConvEventCallback((TIMConvEvent conv_event, List<ConvInfo> conv_list, string user_data)=>{
// Process the callback logic
});