Interface for managing the waiting room during a meeting.
More...
#include <ZoomSDKWaitingRoomController.h>
Inherits NSObject.
Interface for managing the waiting room during a meeting.
Definition at line 176 of file ZoomSDKWaitingRoomController.h.
◆ admitAllToMeeting
Permit all of the users currently in the waiting room to join the meeting.
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ admitToMeeting:
Admit user to join meeting.
- Parameters
-
| userid | The ID of user who joins meeting. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ canExpelUser
Determines if a host or cohost can expel users in the waiting room.
- Returns
- YES if that a host or cohost can expel users in the waiting room. Otherwise, NO.
◆ canRenameUser
Determines if the host or cohost can rename users in the waiting room.
- Returns
- YES if the host or cohost can rename users in the waiting room. Otherwise, NO.
◆ enableWaitingRoomOnEntry:
Sets to enable or disable waiting room.
- Parameters
-
| enable | YES if enabled, NO otherwise. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ expelUser:
Removes a specified user from the waiting room.
- Parameters
-
| userID | The user's ID removed from the waiting room by a host or cohost. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ getWaitingRoomUserInfo:
| - (ZoomSDKUserInfo *_Nullable) getWaitingRoomUserInfo: |
|
(unsigned int) | userid |
|
Gets the information of users in the waiting room.
- Parameters
-
| userid | The ID of user who is in the waiting room. |
- Returns
- If the function succeeds, it returns the object of ZoomSDKUserInfo for the specified user. Otherwise, this function fails and returns nil.
◆ getWaitRoomUserList
| - (NSArray *_Nullable) getWaitRoomUserList |
|
|
|
Gets the list of users in the waiting room.
- Returns
- If the function succeeds, it returns a NSArray. Otherwise, this function fails and returns nil.
◆ isAudioEnabledInWaitingRoom
| - (BOOL) isAudioEnabledInWaitingRoom |
|
|
|
Determines if the attendee is enabled to turn on audio when joining the meeting.
- Returns
- YES if enable to turn on. Otherwise, NO.
◆ isEnableWaitingRoomOnEntry
| - (BOOL) isEnableWaitingRoomOnEntry |
|
|
|
Query if waiting room is enabled in current meeting.
- Returns
- YES if enabled. Otherwise, NO.
◆ isPresetAudioUnmuteInWaitingRoom
| - (BOOL) isPresetAudioUnmuteInWaitingRoom |
|
|
|
Gets the audio pre-set mute or unmute status in waiting room.
- Returns
- YES if pre-set unmute. Otherwise, NO.
- Warning
- Only worked out of meeting.
◆ isPresetVideoUnmuteInWaitingRoom
| - (BOOL) isPresetVideoUnmuteInWaitingRoom |
|
|
|
Gets the video pre-set mute or unmute status in waiting room.
- Returns
- YES if pre-set unmute. Otherwise, NO.
- Warning
- Only worked out of meeting.
◆ isSupportWaitingRoom
| - (BOOL) isSupportWaitingRoom |
|
|
|
Query if the meeting supports waiting room.
- Returns
- YES if supported. Otherwise, NO.
◆ isVideoEnabledInWaitingRoom
| - (BOOL) isVideoEnabledInWaitingRoom |
|
|
|
Determines if the attendee is enabled to turn on video when joining the meeting.
- Returns
- YES if enable to turn on. Otherwise, NO.
◆ isWaitingRoomOnEntryLocked
| - (BOOL) isWaitingRoomOnEntryLocked |
|
|
|
◆ presetAudioInWaitingRoom:
Pre-set audio mute or unmute status in waiting room.
- Parameters
-
| muteAudio | Pre-set audio mute or unmute status. |
- Returns
ZoomSDKError_Success means the pre-set success. Otherwise, this function returns an error.
- Warning
- Only worked out of meeting.
◆ presetVideoInWaitingRoom:
Pre-set video mute or unmute status in waiting room.
- Parameters
-
| muteVideo | Pre-set video mute or unmute status. |
- Returns
ZoomSDKError_Success means the pre-set succeeded. Otherwise, this function returns an error.
- Warning
- Only worked out of meeting.
◆ putIntoWaitingRoom:
Put user into waiting room.
- Parameters
-
| userid | The ID of user who is put into waiting room by host or co-host. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ renameUser:newUserName:
| - (ZoomSDKError) renameUser: |
|
(unsigned int) | userID |
| newUserName: |
|
(NSString *) | userName |
Change a screen name of the user 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, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ requestCustomWaitingRoomData
Gets the WaitingRoom CustomizeData information in the waiting room.
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ _delegate
◆ delegate