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:
 Meeting host enabled the waiting room feature, then the delegate will receive this notification, will notify the host someone entery the waiting room.
 
(void) - onWaitingRoomUserLeft:
 Meeting host enabled the waiting room feature, then the delegate will receive this notification, will notify the host someone left from waiting room.
 
(void) - onWaitingRoomPresetAudioStatusChanged:
 During the waiting room, this callback event will be triggered when host change audio status.
 
(void) - onWaitingRoomPresetVideoStatusChanged:
 During the waiting room, this callback event will be triggered when host change video status.
 
(void) - onCustomWaitingRoomDataUpdated:
 During the waiting room, this callback event will be triggered when requestCustomWaitingRoomData called.
 
(void) - onWaitingRoomUserNameChanged:userName:
 Callback of that 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 62 of file MobileRTCWaitingRoomService.h.

Method Documentation

◆ onCustomWaitingRoomDataUpdated:

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

During the waiting room, this callback event will be triggered when requestCustomWaitingRoomData called.

Parameters
dataThe WaitingRoom Customize Data Info.

◆ onWaitingRoomPresetAudioStatusChanged:

- (void) onWaitingRoomPresetAudioStatusChanged: (BOOL) audioCanTurnOn
optionalrequired

During the waiting room, this callback event will be triggered when host change audio status.

Parameters
audioCanTurnOnYES means audio can be turned on. Otherwise not.

◆ onWaitingRoomPresetVideoStatusChanged:

- (void) onWaitingRoomPresetVideoStatusChanged: (BOOL) videoCanTurnOn
optionalrequired

During the waiting room, this callback event will be triggered when host change video status.

Parameters
videoCanTurnOnYES means video can be turned on. Otherwise not.

◆ onWaitingRoomUserJoin:

- (void) onWaitingRoomUserJoin: (NSUInteger) userId
optional

Meeting host enabled the waiting room feature, then the delegate will receive this notification, will notify the host someone entery the waiting room.

Note
Only for custom UI.

◆ onWaitingRoomUserLeft:

- (void) onWaitingRoomUserLeft: (NSUInteger) userId
optionalrequired

Meeting host enabled the waiting room feature, then the delegate will receive this notification, will notify the host someone left from waiting room.

Note
Only for custom UI.

◆ onWaitingRoomUserNameChanged:userName:

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

Callback of that waiting room user name changed.

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