Meeting waiting room controller interface.
More...
#include <meeting_waiting_room_interface.h>
Meeting waiting room controller interface.
Definition at line 140 of file meeting_waiting_room_interface.h.
◆ AdmitAllToMeeting()
virtual SDKError IMeetingWaitingRoomController::AdmitAllToMeeting |
( |
| ) |
|
|
pure virtual |
Permit all of the users currently in the waiting room to join the meeting.
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed, the return is nullptr. For more details, see SDKError enum.
◆ AdmitToMeeting()
virtual SDKError IMeetingWaitingRoomController::AdmitToMeeting |
( |
unsigned int | userid | ) |
|
|
pure virtual |
Permit the specified user to join the meeting.
- Parameters
-
userid | Specifies the user ID. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed, the return is nullptr. For more details, see SDKError enum.
◆ CanExpelUser()
virtual SDKError IMeetingWaitingRoomController::CanExpelUser |
( |
bool & | bIsCan | ) |
|
|
pure virtual |
Determine if a host or cohost can expel user(s) in the waiting room.
- Parameters
-
[out] | bIsCan | True means that a host or cohost can expel user(s) in the waiting room. Otherwise they may not |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ CanRenameUser()
virtual SDKError IMeetingWaitingRoomController::CanRenameUser |
( |
bool & | bIsCan | ) |
|
|
pure virtual |
Determine if the host or cohost can rename users in the waiting room.
- Parameters
-
[out] | bIsCan | True means the host or cohost can rename users in the waiting room. Otherwise they can't. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ EnableWaitingRoomOnEntry()
virtual SDKError IMeetingWaitingRoomController::EnableWaitingRoomOnEntry |
( |
bool | bEnable | ) |
|
|
pure virtual |
Set to enable the attendee to enter the waiting room when joining the meeting.
- Parameters
-
bEnable | True indicates to enable to enter. False not. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ ExpelUser()
virtual SDKError IMeetingWaitingRoomController::ExpelUser |
( |
unsigned int | userid | ) |
|
|
pure virtual |
Remove a specified user from the waiting room.
- Parameters
-
userid | The ID of the user removed from the waiting room by a host or cohost. /// |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ GetWaitingRoomLst()
virtual IList< unsigned int > * IMeetingWaitingRoomController::GetWaitingRoomLst |
( |
| ) |
|
|
pure virtual |
Get the list of attendees who are in the waiting room.
- Returns
- If the function succeeds, the return value is the list of attendees. Otherwise failed, the return is nullptr.
◆ GetWaitingRoomUserInfoByID()
virtual IUserInfo * IMeetingWaitingRoomController::GetWaitingRoomUserInfoByID |
( |
unsigned int | userid | ) |
|
|
pure virtual |
Get the attendee information in the waiting room via user ID.
- Parameters
-
userid | Specifies the user ID. |
- Returns
- If the function succeeds, the return value is a pointer to IUserInfo. Otherwise failed, the return is nullptr. For more details, see IUserInfo.
◆ IsAudioEnabledInWaitingRoom()
virtual bool IMeetingWaitingRoomController::IsAudioEnabledInWaitingRoom |
( |
| ) |
|
|
pure virtual |
Determine if the attendee is enabled to turn on audio when joining the meeting.
- Returns
- True indicates to enable to turn on.
◆ IsSupportWaitingRoom()
virtual bool IMeetingWaitingRoomController::IsSupportWaitingRoom |
( |
| ) |
|
|
pure virtual |
Determine whether the current meeting supports the waiting room or not.
- Returns
- True indicates to support.
◆ IsVideoEnabledInWaitingRoom()
virtual bool IMeetingWaitingRoomController::IsVideoEnabledInWaitingRoom |
( |
| ) |
|
|
pure virtual |
Determine if the attendee is enabled to turn on video when joining the meeting.
- Returns
- True indicates to enable to turn on.
◆ IsWaitingRoomOnEntryFlagOn()
virtual bool IMeetingWaitingRoomController::IsWaitingRoomOnEntryFlagOn |
( |
| ) |
|
|
pure virtual |
Determine if the attendee is enabled to enter the waiting room when joining the meeting.
- Returns
- True indicates to enable to enter.
◆ IsWaitingRoomOnEntryLocked()
virtual bool IMeetingWaitingRoomController::IsWaitingRoomOnEntryLocked |
( |
| ) |
|
|
pure virtual |
Determine if the enable waiting room on entry feature is locked, see EnableWaitingRoomOnEntry.
- Returns
- True indicates locked, otherwise not.
◆ PutInWaitingRoom()
virtual SDKError IMeetingWaitingRoomController::PutInWaitingRoom |
( |
unsigned int | userid | ) |
|
|
pure virtual |
Enable the specified user to enter the waiting room.
- Parameters
-
userid | Specifies the user ID. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ RenameUser()
virtual SDKError IMeetingWaitingRoomController::RenameUser |
( |
unsigned | userid, |
|
|
const zchar_t * | newName ) |
|
pure virtual |
Change a user's screen name in the waiting room.
- Parameters
-
userid | The ID of users put into the waiting room by a host or cohost. |
userName | The new user name. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ RequestCustomWaitingRoomData()
virtual SDKError IMeetingWaitingRoomController::RequestCustomWaitingRoomData |
( |
| ) |
|
|
pure virtual |
Get the WaitingRoom CustomizeData information in the waiting room.
- Returns
- If the function succeeds, the return value is SDKErr_Success. See onCustomWaitingRoomDataUpdated to access the result data. Otherwise failed. To get extended error information, see SDKError enum.
◆ SetEvent()
Set meeting waiting room callback event handler.
- Parameters
-
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.