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, receiver, and conversation type of each message. It is an abstract concept.

Conversation Types

RC supports various conversation types to meet different business scenarios. The client SDK uses the ConversationType 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.CHATROOMChatroom Chat
ConversationType.SYSTEMSystem Conversation

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

One-to-One Chat

Refers to a one-on-one chat between two users. The two users can be friends or strangers. RC does not manage user relationships 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 more than two users. 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 within an App.

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

Chatroom Chat

Chatrooms have no user limit, and massive messages are delivered instantly. Users who leave the chatroom will no longer receive any messages from it, and there is no push notification feature. The conversation relationship is established and maintained by RC. Users can join or leave a chatroom using the SDK's relevant interfaces.

The SDK does not save chatroom messages. All data from the chatroom is cleared when the user exits. 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 established by broadcasting messages 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 Conversation. All conversation-related information is retrieved from this entity class.

The following table lists the main properties provided by Conversation:

Property NameTypeDescription
targetIdStringThe conversation ID (or target ID) used to identify the other party in the conversation.
  • In one-to-one chats, the conversation ID directly uses the other user's ID.
  • In group and chatroom chats, it is the corresponding group, chatroom ID.
  • In system conversations, it is the system account ID specified by the developer.
portraitUrlStringThe URL of the avatar in the conversation.
unreadMessageCountStringThe number of unread messages in the conversation.
isTopbooleanWhether the conversation is pinned.
conversationTitleStringThe title of the conversation.
conversationTypeConversationTypeThe type of conversation, as described in detail above.
latestMessageMessageContentThe content of the last message stored locally in the client for this conversation. For more details on message storage properties, refer to the Message Introduction section on MessageTag.
latestMessageIdintThe ID of the last message stored locally in the client for this conversation.
draftStringThe draft information saved in the conversation. For more details, refer to the Draft Detailed Explanation.
receivedTimelongThe time when the last message in the conversation was received.
1. The value is a Unix timestamp in milliseconds.
2. The received time is the local time of the client when the message arrives at the receiver.
sentTimelongThe time when the last message in the conversation was sent, as a Unix timestamp in milliseconds.
1. When the last message in the conversation is a successfully sent or received message, this returns the time the message arrived at the RC server.
2. When the last message is a failed message, this returns the local sending time of the message.
3. When the conversation has draft information and the draft save time is later than the last message time, this returns the draft save time.
receivedStatusMessage.ReceivedStatusThe received status of the last message in the conversation.
sentStatusMessage.SentStatusThe sent status of the last message in the conversation.
objectNameStringThe 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 you specify.
senderUserIdStringThe sender ID of the last message in the conversation.
senderUserNameStringThe sender's name. This field is for internal SDK use only.
notificationStatusConversationNotificationStatusThe Do Not Disturb status of the conversation.
mentionedCountintThe number of messages in this conversation where the user has been mentioned.
latestMessageDirectionMessage.MessageDirectionThe direction of the last message in the conversation, either sent or received.
latestMessageExtra StringThe additional information of the last message in the conversation.
latestMessageUIdStringThe unique ID of the last message in the conversation.
1. Only successfully sent messages have a unique ID.
2. The ID is globally unique within the same Appkey.
latestMessageReadReceiptInfoReadReceiptInfoThe read receipt status of the last message in the conversation, applicable only to group chats.
latestMessageConfigMessageConfigThe configuration information of the last message in the conversation.
latestCanIncludeExpansionbooleanWhether the last message in the conversation allows message expansion.
1. This property is determined when the message is sent and cannot be modified afterward.
2. Expansion information is only supported in one-to-one and group chats; other conversation types cannot set expansion information.
latestExpansionMap<String, String>The expansion information of the last message in the conversation. For more details, refer to Message Expansion.
pushNotificationLevelintThe Do Not Disturb level of the conversation. For more details, refer to the Do Not Disturb Overview.