For the complete documentation index, see llms.txt. This page is also available as Markdown.

waitingUsersLeft

Emitted when users waiting in the lobby left and are no longer in the room.

Sample payload

{
  "type": "waitingUsersLeft",
  "data": {
    "userIds": [
       "2775f882-845e-4416-82c9-04cc25669c0b",
       "64221470-c360-47ad-961e-ecbda8eeaf7f"
    ]
  }
}

Sample subscription code

sambaFrame.on('waitingUsersLeft', (event) => {
  const data = event.data;
  console.log(data.userIds, 'left the lobby');  
});

Last updated