Protocol for receiving events related to the waiting room.
More...
#include <ZoomSDKWaitingRoomController.h>
Inherits <NSObjectNSObject>.
Protocol for receiving events related to the waiting room.
Definition at line 126 of file ZoomSDKWaitingRoomController.h.
◆ onCustomWaitingRoomDataUpdated:handle:
Callback of that customize data info updated.
- Parameters
-
◆ onUserJoinWaitingRoom:
| - (void) onUserJoinWaitingRoom: |
|
(unsigned int) | userid |
|
Callback of that user joins waiting room.
- Parameters
-
| userid | The ID of user who joins waiting room. |
◆ onUserLeftWaitingRoom:
| - (void) onUserLeftWaitingRoom: |
|
(unsigned int) | userid |
|
Callback of that user leaves waiting room.
- Parameters
-
| userid | The ID of user who leaves waiting room. |
◆ onWaitingRoomEntranceEnabled:
| - (void) onWaitingRoomEntranceEnabled: |
|
(BOOL) | enabled |
|
This callback event will be triggered when host or cohost enables or disables waiting room entrance.
- Parameters
-
| enabled | YES means enables waiting room entrance, NO means disables waiting room entrance. |
◆ onWaitingRoomPresetAudioStatusChanged:
| - (void) onWaitingRoomPresetAudioStatusChanged: |
|
(BOOL) | audioCanTurnOn |
|
During the waiting room, this callback event will be triggered when host change audio status.
- Parameters
-
| audioCanTurnOn | YES means audio can be turned on. Otherwise not. |
◆ onWaitingRoomPresetVideoStatusChanged:
| - (void) onWaitingRoomPresetVideoStatusChanged: |
|
(BOOL) | videoCanTurnOn |
|
During the waiting room, this callback event will be triggered when host change video status.
- Parameters
-
| videoCanTurnOn | YES means video can be turned on. Otherwise not. |
◆ onWaitingRoomUserNameChanged:userName:
| - (void) onWaitingRoomUserNameChanged: |
|
(unsigned int) | userID |
| userName: |
|
(NSString *) | userName |
Callback indicating that the name of a user in the waiting room has changed.
- Parameters
-
| userID | The ID of the user whose user name has changed. |
| userName | The new user name. |