Hierarchy

  • ModeratorWaitingRoomService

Properties

Accessors

  • get isWaitingRoomCapable(): boolean
  • It checks a meeting's settings and returns if it can support waiting room functionality.

    Returns boolean

  • get isWaitingRoomEnabled(): boolean
  • It returns if waiting room functionality is turned on for a meeting.

    Returns boolean

Methods

  • Admit all participants in the current meeting from the waiting room.

    Returns Promise<AdmitAllWrResponse>

  • Deny all participants in the current meeting from the waiting room.

    Returns Promise<DenyAllWrResponse>

  • 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:

    Example

    sdk.meetingService.moderatorWaitingRoomService.observe("isWaitingRoomEnabled", function() {
    console.info("isWaitingRoomEnabled changed to : ", sdk.meetingService.moderatorWaitingRoomService.isWaitingRoomEnabled)
    });

    Parameters

    • property: keyof ModeratorWaitingRoomService

      The name of the property to observe for changes.

    • callback: (() => void)

      on change event for the property.

        • (): void
        • Returns void

    Returns void

Generated using TypeDoc