Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
<MobileRTCWaitingRoomServiceDelegate> Protocol Reference

Meeting host enabled the waiting room feature, then the delegate will receive this notification #only for custom UI#. More...

#include <MobileRTCWaitingRoomService.h>

Inherits <NSObjectNSObject>.

Instance Methods

(void) - onWaitingRoomUserJoin:
 Callback event when the meeting host enabled the waiting room feature. Notifies the host that someone entered the waiting room.
 
(void) - onWaitingRoomUserLeft:
 Callback event when the meeting host enabled the waiting room feature. Notifies the host that someone left from the waiting room.
 
(void) - onWaitingRoomPresetAudioStatusChanged:
 Callback event during the waiting room. Triggered when the host changes audio status.
 
(void) - onWaitingRoomPresetVideoStatusChanged:
 Callback event during the waiting room. Triggered when the host changes video status.
 
(void) - onCustomWaitingRoomDataUpdated:
 Callback event during the waiting room. Triggered when requestCustomWaitingRoomData is called.
 
(void) - onWaitingRoomUserNameChanged:userName:
 Callback event when the waiting room user name changed.
 

Detailed Description

Meeting host enabled the waiting room feature, then the delegate will receive this notification #only for custom UI#.

Definition at line 59 of file MobileRTCWaitingRoomService.h.

Method Documentation

◆ onCustomWaitingRoomDataUpdated:

- (void) onCustomWaitingRoomDataUpdated: (MobileRTCCustomWaitingRoomData *_Nullable) data
optionalrequired

Callback event during the waiting room. Triggered when requestCustomWaitingRoomData is called.

Parameters
dataThe WaitingRoom Customize Data Info.

◆ onWaitingRoomPresetAudioStatusChanged:

- (void) onWaitingRoomPresetAudioStatusChanged: (BOOL) audioCanTurnOn
optionalrequired

Callback event during the waiting room. Triggered when the host changes audio status.

Parameters
audioCanTurnOnYES if audio can be turned on. Otherwise, NO.

◆ onWaitingRoomPresetVideoStatusChanged:

- (void) onWaitingRoomPresetVideoStatusChanged: (BOOL) videoCanTurnOn
optionalrequired

Callback event during the waiting room. Triggered when the host changes video status.

Parameters
videoCanTurnOnYES if video can be turned on. Otherwise, NO.

◆ onWaitingRoomUserJoin:

- (void) onWaitingRoomUserJoin: (NSUInteger) userId
optional

Callback event when the meeting host enabled the waiting room feature. Notifies the host that someone entered the waiting room.

Parameters
userIdThe user ID.
Note
Only for custom UI.

◆ onWaitingRoomUserLeft:

- (void) onWaitingRoomUserLeft: (NSUInteger) userId
optionalrequired

Callback event when the meeting host enabled the waiting room feature. Notifies the host that someone left from the waiting room.

Parameters
userIdThe user ID.
Note
Only for custom UI.

◆ onWaitingRoomUserNameChanged:userName:

- (void) onWaitingRoomUserNameChanged: (NSInteger) userID
userName: (nonnull NSString *) userName 
optionalrequired

Callback event when the waiting room user name changed.

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