Meeting SDK for Linux API Reference
|
Meeting waiting room controller interface. More...
#include <meeting_waiting_room_interface.h>
Public Member Functions | |
virtual SDKError | SetEvent (IMeetingWaitingRoomEvent *pEvent)=0 |
Set meeting waiting room callback event handler. | |
virtual bool | IsSupportWaitingRoom ()=0 |
Determine whether the current meeting supports the waiting room or not. | |
virtual bool | IsWaitingRoomOnEntryFlagOn ()=0 |
Determine if the attendee is enabled to enter the waiting room when joining the meeting. | |
virtual SDKError | EnableWaitingRoomOnEntry (bool bEnable)=0 |
Set to enable the attendee to enter the waiting room when joining the meeting. | |
virtual IList< unsigned int > * | GetWaitingRoomLst ()=0 |
Get the list of attendees who are in the waiting room. | |
virtual IUserInfo * | GetWaitingRoomUserInfoByID (unsigned int userid)=0 |
Get the attendee information in the waiting room via user ID. | |
virtual SDKError | AdmitToMeeting (unsigned int userid)=0 |
Permit the specified user to join the meeting. | |
virtual SDKError | AdmitAllToMeeting ()=0 |
Permit all of the users currently in the waiting room to join the meeting. | |
virtual SDKError | PutInWaitingRoom (unsigned int userid)=0 |
Enable the specified user to enter the waiting room. | |
virtual bool | IsAudioEnabledInWaitingRoom ()=0 |
Determine if the attendee is enabled to turn on audio when joining the meeting. | |
virtual bool | IsVideoEnabledInWaitingRoom ()=0 |
Determine if the attendee is enabled to turn on video when joining the meeting. | |
virtual SDKError | PresetAudioInWaitingRoom (bool bMute)=0 |
Pre-set audio mute or unmute status in waiting room. | |
virtual bool | IsPresetAudioUnmuteInWaitingRoom ()=0 |
Get the audio pre-set mute or unmute status in waiting room. | |
virtual SDKError | PresetVideoInWaitingRoom (bool bMute)=0 |
Pre-set video mute or unmute status in waiting room. | |
virtual bool | IsPresetVideoUnmuteInWaitingRoom ()=0 |
Get the video pre-set mute or unmute status in waiting room. | |
virtual SDKError | RequestCustomWaitingRoomData ()=0 |
Get the WaitingRoom CustomizeData information in the waiting room. | |
virtual SDKError | CanRenameUser (bool &bIsCan)=0 |
Determine if the host or cohost can rename users in the waiting room. | |
virtual SDKError | RenameUser (unsigned userid, const zchar_t *newName)=0 |
Change a user's screen name in the waiting room. | |
virtual SDKError | CanExpelUser (bool &bIsCan)=0 |
Determine if a host or cohost can expel user(s) in the waiting room. | |
virtual SDKError | ExpelUser (unsigned int userid)=0 |
Remove a specified user from the waiting room. | |
virtual bool | IsWaitingRoomOnEntryLocked ()=0 |
Determine if the enable waiting room on entry feature is locked, see EnableWaitingRoomOnEntry. | |
Meeting waiting room controller interface.
Definition at line 166 of file meeting_waiting_room_interface.h.
|
pure virtual |
Permit all of the users currently in the waiting room to join the meeting.
|
pure virtual |
Permit the specified user to join the meeting.
userid | Specifies the user ID. |
|
pure virtual |
Determine if a host or cohost can expel user(s) in the waiting room.
[out] | bIsCan | True means that a host or cohost can expel user(s) in the waiting room. Otherwise they may not |
|
pure virtual |
Determine if the host or cohost can rename users in the waiting room.
[out] | bIsCan | True means the host or cohost can rename users in the waiting room. Otherwise they can't. |
|
pure virtual |
Set to enable the attendee to enter the waiting room when joining the meeting.
bEnable | True indicates to enable to enter. False not. |
|
pure virtual |
Remove a specified user from the waiting room.
userid | The ID of the user removed from the waiting room by a host or cohost. |
|
pure virtual |
Get the list of attendees who are in the waiting room.
|
pure virtual |
|
pure virtual |
Determine if the attendee is enabled to turn on audio when joining the meeting.
|
pure virtual |
Get the audio pre-set mute or unmute status in waiting room.
|
pure virtual |
Get the video pre-set mute or unmute status in waiting room.
|
pure virtual |
Determine whether the current meeting supports the waiting room or not.
|
pure virtual |
Determine if the attendee is enabled to turn on video when joining the meeting.
|
pure virtual |
Determine if the attendee is enabled to enter the waiting room when joining the meeting.
|
pure virtual |
Determine if the enable waiting room on entry feature is locked, see EnableWaitingRoomOnEntry.
|
pure virtual |
Pre-set audio mute or unmute status in waiting room.
bMute | Pre-set audio mute or unmute status. |
|
pure virtual |
Pre-set video mute or unmute status in waiting room.
bMute | Pre-set video mute or unmute status. |
|
pure virtual |
Enable the specified user to enter the waiting room.
userid | Specifies the user ID. |
|
pure virtual |
Change a user's screen name in the waiting room.
userid | The ID of users put into the waiting room by a host or cohost. |
userName | The new user name. |
|
pure virtual |
Get the WaitingRoom CustomizeData information in the waiting room.
|
pure virtual |
Set meeting waiting room callback event handler.
pEvent | A pointer to the IMeetingWaitingRoomEvent that receives the waiting room event. |