Interface for managing the waiting room during a meeting.
More...
#include <MobileRTCWaitingRoomService.h>
Inherits NSObject.
Interface for managing the waiting room during a meeting.
Definition at line 109 of file MobileRTCWaitingRoomService.h.
◆ admitAllToMeeting
Permit all of the users currently in the waiting room to join the meeting.
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success, otherwise failed, the return is error. For more details, see [MobileRTCSDKError] enum.
◆ admitToMeeting:
Admit the user go to meeting fram waiting room.
- Returns
- The result of this operation.
- Warning
- Only meeting host/co-host can run the function.
◆ canExpelUser
Determine if host or cohost is enabled to expel user in the waiting room.
- Returns
- YES indicates can expel user.
◆ canRenameUser
Determine if host or cohost is enabled to rename user in the waiting room.
- Returns
- YES indicates to enable to turn on.
◆ enableWaitingRoomOnEntry:
Enable or disable waiting room feature of this meeting.
- Returns
- The result of this operation.
◆ expelUser:
Remove the specified user from waiting room.
- Parameters
-
userID | The ID of user who is put into waiting room by host/co-host. |
- Returns
- If the function succeeds, it will return MobileRTCSDKError_Success. Otherwise failed.
◆ isAudioEnabledInWaitingRoom
- (BOOL) isAudioEnabledInWaitingRoom |
|
|
|
Determine if the attendee is enabled to turn on audio when joining the meeting.
- Returns
- YES indicates to enable to turn on.
◆ isPresetAudioUnmuteInWaitingRoom
- (BOOL) isPresetAudioUnmuteInWaitingRoom |
|
|
|
Get the audio pre-set mute or unmute status in the waiting room.
- Returns
- YES means pre-set unmute, NO means pre-set mute.
- Warning
- Only worked in waiting room.
◆ isPresetVideoUnmuteInWaitingRoom
- (BOOL) isPresetVideoUnmuteInWaitingRoom |
|
|
|
Get the video pre-set mute or unmute status in the waiting room.
- Returns
- YES means pre-set unmute, NO means pre-set mute.
- Warning
- Only worked in waiting room.
◆ isSupportWaitingRoom
- (BOOL) isSupportWaitingRoom |
|
|
|
Is this meeting support Waiting Room feature.
- Returns
- Yes if support waiting room.
◆ isVideoEnabledInWaitingRoom
- (BOOL) isVideoEnabledInWaitingRoom |
|
|
|
Determine if the attendee is enabled to turn on video when joining the meeting.
- Returns
- YES indicates to enable to turn on.
◆ isWaitingRoomOnEntryFlagOn
- (BOOL) isWaitingRoomOnEntryFlagOn |
|
|
|
Is this meeting enabled Waiting Room feature.
- Returns
- Yes if enabled.
◆ isWaitingRoomOnEntryLocked
- (BOOL) isWaitingRoomOnEntryLocked |
|
|
|
Query if enableWaitingRoomOnEntry feature locked.
- Returns
- YES means enabled. NO not.
◆ presetAudioInWaitingRoom:
Pre-set audio mute or unmute status in waiting room.
- Parameters
-
muteAudio | Pre-set audio mute or unmute status. |
- Returns
- MobileRTCSDKError_Success means the pre-set success, otherwise failed.
- Warning
- Only worked in waiting room.
◆ presetVideoInWaitingRoom:
Pre-set video mute or unmute status in waiting room.
- Parameters
-
muteVideo | Pre-set video mute or unmute status. |
- Returns
- MobileRTCSDKError_Success means the pre-set succeeded, otherwise it failed.
- Warning
- Only worked in waiting room.
◆ putInWaitingRoom:
Put the user to waiting room from meeting.
- Returns
- The result of this operation.
- Warning
- Only meeting host/co-host can run the function.
◆ renameUser:newUserName:
- (MobileRTCSDKError) renameUser: |
|
(NSInteger) | userID |
newUserName: |
|
(nonnull NSString *) | userName |
Change user's screen name in the waiting room.
- Parameters
-
userID | Tnto waiting room byhe ID of user who is put i host/co-host. |
userName | The new user name. |
- Returns
- If the function succeeds, it will return MobileRTCSDKError_Success. Otherwise failed.
◆ requestCustomWaitingRoomData
Get the WaitingRoom CustomizeData information in the waiting room.
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError].
◆ waitingRoomList
- (nullable NSArray< NSNumber * > *) waitingRoomList |
|
|
|
Get the waiting room user id list.
- Returns
- Waiting room user list.
◆ waitingRoomUserInfoByID:
Get the user detail information in waiting room.
- Returns
- Waiting room user information.
◆ delegate