Skip to main content

Conversation Overview

A conversation is a logical relationship automatically established and maintained by the RC SDK based on information such as the sender, recipient, and conversation type of each message. It is an abstract concept.

Conversation Types

RC supports multiple conversation types to meet various business scenarios. The client SDK uses the RCIMIWConversationType enumeration to represent different conversation types. The meanings of each enumeration value are as follows:

EnumerationDescription
INVALIDNot supported. Reserved by the SDK. Developers cannot use this type.
PRIVATEOne-to-one chat
GROUPGroup chat
CHATROOMChatroom
SYSTEMSystem conversation
ULTRA_GROUPUltra group chat

One-to-One Chat

A one-to-one chat involves two users communicating directly. The two users can be friends or strangers. RC does not manage the relationship between users; the conversation relationship is established and maintained by RC.

Messages in one-to-one chat conversations are stored in the client's local database.

Group Chat

A group chat involves more than two users communicating together. The group member information is provided and maintained by the App, and RC is only responsible for delivering messages to all users in the group. Each group can have a maximum of 3000 members, and there is no limit to the number of groups within the App.

Messages in group chat conversations are stored in the client's local database.

Chatroom

Chatrooms have no upper limit on the number of members, and a large number of messages are delivered instantly. Users will not receive any messages from the chatroom after they leave, and there is no push notification feature. The conversation relationship is established and maintained by RC. Users can join or leave a chatroom through the SDK's related interfaces.

The SDK does not store chatroom messages. All data in the chatroom is cleared when the user exits. For more details, please refer to the Chatroom Overview.

System Conversation

A system conversation is established when a system account sends a message to a user. This type of conversation can be established by sending a broadcast via the broadcast interface or by a single notification message such as a friend request.

Conversation Entity Class

The conversation entity class encapsulated in the client SDK is RCIMIWConversation. All conversation-related information is obtained from this entity class.

The following table lists the main members provided by RCIMIWConversation:

Property NameTypeDescription
conversationTypeRCIMIWConversationTypeGets the conversation type
targetIdstringConversation ID. For one-to-one chat, it is the recipient ID; for group chat, it is the group ID; for chatroom, it is the chatroom ID; for system conversation, it is the system account ID specified by the developer
channelIdstringChannel ID
unreadCountnumberThe number of unread messages in the current conversation
mentionedCountnumberThe number of messages in this conversation where the user was mentioned
topbooleanWhether this conversation is pinned
draftstringDraft information saved in the conversation
lastMessageRCIMIWMessageGets the last message
notificationLevelRCIMIWPushNotificationLevelThe notification level of the conversation
firstUnreadMsgSendTimenumberGets the timestamp of the first unread message in the conversation. Only effective for ultra groups
operationTimenumberGets the last operation time of the conversation