MediaSFU Angular
    Preparing search index...

    Class LaunchBreakoutRooms

    Launches the breakout rooms by toggling the visibility of the breakout rooms modal.

    This method is used to show or hide the breakout rooms modal based on the current visibility state.

    The options object containing necessary variables and functions.

    Function to update the visibility state of the breakout rooms modal.

    Current visibility state of the breakout rooms modal.

    const options: LaunchBreakoutRoomsOptions = {
    updateIsBreakoutRoomsModalVisible: (isVisible) => {
    console.log('Breakout Rooms Modal is now:', isVisible ? 'Visible' : 'Hidden');
    },
    isBreakoutRoomsModalVisible: false,
    };

    const launchBreakoutRoomsService = new LaunchBreakoutRooms();
    launchBreakoutRoomsService.launchBreakoutRooms(options);
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Launches the breakout rooms by toggling the visibility of the breakout rooms modal.

      Parameters

      • updateIsBreakoutRoomsModalVisible: LaunchBreakoutRoomsOptions

        Function to update the visibility state of the breakout rooms modal.

      Returns void