It returns if waiting room functionality is turned on for a meeting.
It returns a list of participants which are currently in the waiting room.
Admit all participants in the current meeting from the waiting room.
Admit participant in the current meeting from the waiting room.
Demote participants in the current meeting from the waiting room.
Deny all participants in the current meeting from the waiting room.
Deny participant in the current meeting from the waiting room.
Allows observing changes to properties. Provide the property which you are interested in and a callback. Whenever the property value changes, you will be notified via the callback.
Usage:
sdk.meetingService.moderatorWaitingRoomService.observe("isWaitingRoomEnabled", function() {
console.info("isWaitingRoomEnabled changed to : ", sdk.meetingService.moderatorWaitingRoomService.isWaitingRoomEnabled)
});
The name of the property to observe for changes.
on change event for the property.
Enables/disables waiting room.
Generated using TypeDoc
It checks a meeting's settings and returns if it can support waiting room functionality.