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 Value | Conversation Type |
---|---|
ConversationType_PRIVATE | one-to-one chat |
ConversationType_GROUP | group chat |
ConversationType_ULTRAGROUP | ultra group chat |
ConversationType_CHATROOM | chatroom chat |
ConversationType_SYSTEM | system 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.