Skip to main content

Conversation Overview

A conversation refers to the logical relationship automatically established and maintained by the RC SDK based on information such as the sender, receiver, 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 RCConversationType enumeration to represent different conversation types. The meanings of each enumeration value are as follows:

Enumeration ValueConversation Type
ConversationType_PRIVATEone-to-one chat
ConversationType_GROUPgroup chat
ConversationType_ULTRAGROUPultra group chat
ConversationType_CHATROOMchatroom chat
ConversationType_SYSTEMsystem conversation

The RCConversationType enumeration also defines other conversation types, which are now deprecated and no longer maintained.

One-to-One Chat

A one-to-one chat involves two users chatting individually. The users can be friends or strangers. RC does not manage the relationship between users but is responsible for establishing and maintaining the conversation.

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

Group Chat

A group chat involves two or more users chatting together. The group member information is provided and maintained by the app, while RC is responsible for delivering messages to all group members. Each group can have up to 3000 members, and there is no limit to the number of groups in the app.

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

Chatroom Chat

A chatroom has no user limit, supporting high-concurrency message delivery. Users will not receive any messages from the chatroom after leaving, and there are no push notifications. The conversation relationship is established and maintained by RC. Users can join or leave the chatroom through the SDK's relevant interfaces.

The SDK does not store chatroom messages, and all data is cleared when the user leaves the chatroom. For more details, 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 created by sending a broadcast through the broadcast interface or by sending a single notification message, such as a friend request.

Conversation Entity Class

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

The table below lists the main properties provided by RCConversation.

PropertyTypeDescription
targetIdNSStringThe conversation ID (or target ID) used to identify the other party in the conversation.
  • In one-to-one chat, the conversation ID directly uses the other user's ID.
  • In group, chatroom, and ultra group chats, it is the corresponding group, chatroom, or ultra group ID.
  • In system conversations, it is the system account ID specified by the developer.
channelIdNSStringThe business identifier of the conversation, limited to 20 characters. Only applicable to ultra groups.
conversationTitleNSStringThe title of the conversation.
conversationTypeRCConversationTypeThe type of conversation, as described above.
unreadMessageCountIntThe number of unread messages in the conversation.
isTopBOOLWhether the conversation is pinned.
latestMessageRCMessageContentThe content of the last message stored locally in the client for this conversation. For details on message storage properties, refer to the Message Overview.
latestMessageIdlongThe ID of the last message stored locally in the client for this conversation.
draftNSStringThe draft information saved in the conversation. Refer to the Draft Details.
objectNameNSStringThe type name of the last message in the conversation, corresponding to the message content. The predefined message type's objectName can be found in the Message Type Overview. The ObjectName for custom message types is the value specified by the developer.
receivedTimelong longThe receive time of the last message in the conversation.
1. The value is a Unix timestamp in milliseconds.
2. The receive time is the local time on the client when the message reaches the receiver.
sentTimelong longThe send time of the last message in the conversation, as a Unix timestamp in milliseconds.
1. When the last message in the conversation is a successfully sent or received message, this method returns the time the message reached the RC server.
2. When the last message is a failed message, this method returns the local send time of the message.
3. When the conversation has draft information and the draft save time is later than the last message time, this method returns the draft save time.
operationTimelong longThe operation time of the conversation (Unix timestamp, milliseconds), used as the timestamp when paginating the conversation list. The initial value is the same as sentTime, and operations like pinning will update this timestamp.
receivedStatusRCReceivedStatusThe receive status of the last message in the conversation.
sentStatusRCSentStatusThe send status of the last message in the conversation.
senderUserIdNSStringThe sender ID of the last message in the conversation.
latestMessageDirectionRCMessageDirectionThe direction of the last message in the conversation, either sent or received.
latestMessageUIdNSStringThe unique ID of the last message in the conversation.
1. Only successfully sent messages have a unique ID.
2. The ID is globally unique under the same AppKey.
latestMessageReadReceiptInfoRCReadReceiptInfoThe read receipt status of the last message in the conversation, only applicable to group chats.
latestMessageMessageConfigRCMessageConfigThe configuration information of the last message in the conversation.
latestMessageCanIncludeExpansionBOOLWhether the last message in the conversation can include extended information.
1. This property is determined when the message is sent and cannot be modified afterward.
2. Extended information is only supported in one-to-one, group, and ultra group chats. Other conversation types cannot set extended information.
latestExpansionNSDictionaryThe extended information list of the last message in the conversation. For details, refer to Message Extension.
hasUnreadMentionedBOOLWhether there are unread mentioned messages in the conversation.
mentionedCountintThe number of messages in this conversation where the user has been mentioned.
blockStatusRCConversationNotificationStatusThe Do Not Disturb status of the conversation.
notificationLevelRCPushNotificationLevelThe Do Not Disturb level of the conversation. For details, refer to the Do Not Disturb Overview.
channelTypeRCUltraGroupChannelTypeThe channel type of the ultra group. This field is only valid when ConversationType is ultra group. It is 0 for non-ultra groups.
firstUnreadMsgSendTimelong longStarting from version 5.2.5, the send time of the first unread message in the conversation is supported, as a Unix timestamp in milliseconds. Only applicable to ultra group conversations.