WaitingRoomParticipantEvent, events triggered when participants have joined in/left the waiting room.

Usage :

Example

let onParticipantsAddedToWR = (message) => {
console.log("Waiting Room : New participants joined ",message)
}
sdk.meetingService.moderatorWaitingRoomService.events.added.subscribe(onParticipantsAddedToWR);

let onParticipantsRemovedFromWR = (message) => {
console.log("Waiting Room : Participants left ",message)
}
sdk.meetingService.moderatorWaitingRoomService.events.removed.subscribe(onParticipantsRemovedFromWR);

sdk.meetingService.moderatorWaitingRoomService.events.added.unsubscribe(onParticipantsAddedToWR);
sdk.meetingService.moderatorWaitingRoomService.events.removed.unsubscribe(onParticipantsRemovedFromWR);

Hierarchy

  • WaitingRoomParticipantEvent

Constructors

Properties

Constructors

Properties

added: default<((participants) => void)> = ...

Event triggered when, participants have arrived in the waiting room

removed: default<((participants) => void)> = ...

Event triggered when, participants have left the waiting room

Generated using TypeDoc