Quit Chatroom
Exiting a chatroom is supported under the following scenarios:
- Passive Exit from Chatroom: The chatroom has an automatic kick-out mechanism for offline members. When this mechanism is triggered, RC's server will remove the user from the chatroom. Users who are banned will also be kicked out of the chatroom.
- Active Exit from Chatroom: The client provides an API that allows users to actively exit the chatroom.
Automatic Exit Mechanism for Offline Chatroom Members
The chatroom has an automatic kick-out mechanism for offline members. If the following default conditions are met after a user goes offline, RC's server will automatically remove the user from the chatroom:
- Within 30 seconds of the user going offline, if the 31st message is generated in the chatroom, the automatic kick-out is triggered.
- Or, if the user has been offline for more than 30 seconds and a new message is generated in the chatroom, the automatic kick-out is triggered.
tip
- The default conditions require that new messages must be generated in the chatroom; otherwise, the kick-out action cannot be triggered. If no messages are generated in the chatroom, abnormal users cannot be kicked out.
- If you need to modify the default behavior's dependency on new messages, please submit a ticket to apply for Real-time Kick-out of Abnormal Chatroom Members. After enabling this service, the server will determine whether a user is in an abnormal state through SDK behavior (requires Android/iOS IMLib SDK version ≧ 5.1.6, Web IMLib version ≧ 5.3.2), and abnormal users can be kicked out within 5 minutes at the latest.
- To protect specific users, i.e., to avoid automatically kicking out certain users (as in some application scenarios where users may need to stay in the chatroom), you can use the Chatroom User Allowlist feature provided by the Server API.
Active Exit from Chatroom
Client users can actively exit the chatroom. Call the quitChatRoom API to exit the chatroom.
const chatRoomId = "<Chatroom ID>";
RongIMLib.quitChatRoom(chatRoomId).then(res => {
// Successfully exited the chatroom
if(res.code === 0){
console.log('Exited chatroom ' + chatRoomId)
}
})
Parameter | Type | Description |
---|---|---|
chatRoomId | string | Chatroom ID |