WaitingRoomParticipantEvent, events triggered when participants have joined in/left the waiting room.
Usage :
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); Copy
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);
Readonly
Event triggered when, participants have arrived in the waiting room
Event triggered when, participants have left the waiting room
Generated using TypeDoc
WaitingRoomParticipantEvent, events triggered when participants have joined in/left the waiting room.
Usage :
Example