Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IMeetingWaitingRoomEvent Class Referenceabstract

Meeting Waiting Room Callback Event. More...

#include <meeting_waiting_room_interface.h>

Public Member Functions

virtual ~IMeetingWaitingRoomEvent ()
 
virtual void onWaitingRoomUserJoin (unsigned int userID)=0
 Callback event of notification that user joins the waiting room.
 
virtual void onWaitingRoomUserLeft (unsigned int userID)=0
 Callback event of notification that user leaves the waiting room.
 
virtual void onWaitingRoomPresetAudioStatusChanged (bool bAudioCanTurnOn)=0
 During the waiting room, this callback event will be triggered when host change audio status.

 
virtual void onWaitingRoomPresetVideoStatusChanged (bool bVideoCanTurnOn)=0
 During the waiting room, this callback event will be triggered when host change video status.

 
virtual void onCustomWaitingRoomDataUpdated (CustomWaitingRoomData &bData, IWaitingRoomDataDownloadHandler *bHandler)=0
 During the waiting room, this callback event will be triggered when RequestCustomWaitingRoomData called.
 
virtual void onWaitingRoomUserNameChanged (unsigned int userID, const zchar_t *userName)=0
 Callback indicating that the name of a user in the waiting room has changed.
 
virtual void onWaitingRoomEntranceEnabled (bool bIsEnabled)=0
 This callback event will be triggered when host or cohost enables or disables waiting room entrance.
 

Detailed Description

Meeting Waiting Room Callback Event.

Definition at line 104 of file meeting_waiting_room_interface.h.

Constructor & Destructor Documentation

◆ ~IMeetingWaitingRoomEvent()

virtual IMeetingWaitingRoomEvent::~IMeetingWaitingRoomEvent ( )
inlinevirtual

Definition at line 107 of file meeting_waiting_room_interface.h.

107{}

Member Function Documentation

◆ onCustomWaitingRoomDataUpdated()

virtual void IMeetingWaitingRoomEvent::onCustomWaitingRoomDataUpdated ( CustomWaitingRoomData & bData,
IWaitingRoomDataDownloadHandler * bHandler )
pure virtual

During the waiting room, this callback event will be triggered when RequestCustomWaitingRoomData called.

Parameters
TheWaitingRoom Customize Data Info, handler for download waitingRoom Customize Data if download fail.

◆ onWaitingRoomEntranceEnabled()

virtual void IMeetingWaitingRoomEvent::onWaitingRoomEntranceEnabled ( bool bIsEnabled)
pure virtual

This callback event will be triggered when host or cohost enables or disables waiting room entrance.

Parameters
bIsEnabledTrue enables waiting room entrance, false means disables waiting room entrance.

◆ onWaitingRoomPresetAudioStatusChanged()

virtual void IMeetingWaitingRoomEvent::onWaitingRoomPresetAudioStatusChanged ( bool bAudioCanTurnOn)
pure virtual

During the waiting room, this callback event will be triggered when host change audio status.

Parameters
bAudioCanTurnOnTRUE means audio can be turned on. Otherwise not.

◆ onWaitingRoomPresetVideoStatusChanged()

virtual void IMeetingWaitingRoomEvent::onWaitingRoomPresetVideoStatusChanged ( bool bVideoCanTurnOn)
pure virtual

During the waiting room, this callback event will be triggered when host change video status.

Parameters
bVideoCanTurnOnTRUE means video can be turned on. Otherwise not.

◆ onWaitingRoomUserJoin()

virtual void IMeetingWaitingRoomEvent::onWaitingRoomUserJoin ( unsigned int userID)
pure virtual

Callback event of notification that user joins the waiting room.

Parameters
userIDThe ID of user who joins the waiting room.

◆ onWaitingRoomUserLeft()

virtual void IMeetingWaitingRoomEvent::onWaitingRoomUserLeft ( unsigned int userID)
pure virtual

Callback event of notification that user leaves the waiting room.

Parameters
userIDThe ID of user who leaves the waiting room.

◆ onWaitingRoomUserNameChanged()

virtual void IMeetingWaitingRoomEvent::onWaitingRoomUserNameChanged ( unsigned int userID,
const zchar_t * userName )
pure virtual

Callback indicating that the name of a user in the waiting room has changed.

Parameters
userIDThe ID of the user whose user name have has changed.
userNameThe new user name.