#include <ZoomSDKNewBreakoutRoomController.h>
Inherits NSObject.
◆ assignUserToBO:BOID:
- (ZoomSDKError) assignUserToBO: |
|
(NSString *) | userID |
BOID: |
|
(NSString *) | ID |
Assign user to Breakout meeting.
- Parameters
-
userID | Assigned user ID. |
ID | Breakout meeting ID. |
- Returns
- If the function succeeds,will return ZoomSDKError_Success.
◆ createBOWithBOName:
- (NSString *_Nullable) createBOWithBOName: |
|
(NSString *) | name |
|
◆ createBOWithBONameList:
- (ZoomSDKError) createBOWithBONameList: |
|
(NSArray< NSString * > *_Nullable) | nameList |
|
Creator breakout meeting in batch.
- Parameters
-
nameList | Breakout meeting name list, the element of nameList should less than 50 characters. |
- Returns
- If the function succeeds,will return ZoomSDKError_Success.
◆ createBreakoutRoom:
- (BOOL) createBreakoutRoom: |
|
(NSString *) | name |
|
Create a breakout room.
- Parameters
-
name | The breakout room name. |
- Returns
- If the function succeeds,will return YES.
- Note
- 1. This function is compatible with meeting breakout rooms and webinar breakout rooms. 2. This function is asynchronous, onCreateBOResponse is the corresponding callback notification. 3. Webinar breakout room only support Zoomui Mode.
◆ createWebinarBO:
- (BOOL) createWebinarBO: |
|
(NSArray< NSString * > *) | nameList |
|
Creator webinar breakout meeting.
- Parameters
-
nameList | Breakout meeting name list, the element of nameList should less than 50 characters. |
- Returns
- If the function succeeds,will return YES.
◆ getBOOption
Get BO option.
- Returns
- The value is bo option object.
◆ getWebPreAssignBODataStatus
Get the downloading status of pre-assigned data.
- Returns
- If the function succeeds, the return value is the web pre-assigned data download status. For more details, see ZoomSDKPreAssignBODataStatus.
◆ isWebPreAssignBOEnabled
- (BOOL) isWebPreAssignBOEnabled |
|
|
|
Check whether web enabled the pre-assigned option when scheduling a meeting.
- Returns
- If return YES means enabled, otherwise not.
◆ removeBO:
Remove breakout meeting by ID. '-onRemoveBOResponse:boID:' is the corresponding callback notification.
- Parameters
-
BOID | Need remove breakout meeting ID. |
- Returns
- If the function succeeds,will return ZoomSDKError_Success.
◆ removeUserFromBO:BOID:
- (ZoomSDKError) removeUserFromBO: |
|
(NSString *) | userID |
BOID: |
|
(NSString *) | ID |
Removed user from Breakout meeting.
- Parameters
-
userID | Removed user ID. |
ID | Breakout meeting ID. |
- Returns
- If the function succeeds,will return ZoomSDKError_Success.
◆ requestAndUseWebPreAssignBOList
Request web pre-assigned data and create those rooms.
- Returns
- If the function succeeds, will return ZoomSDKError_Success.
◆ setBOOption:
Set BO option.
- Parameters
-
boOption | The option that you want to set. |
- Returns
- If the function succeeds,will return ZoomSDKError_Success.
◆ updateBOName:BOID:
- (ZoomSDKError) updateBOName: |
|
(NSString *) | newName |
BOID: |
|
(NSString *) | ID |
Update breakout meeting information. '-onUpdateBONameResponse:boID:' is the corresponding callback notification.
- Parameters
-
newName | Breakout meeting new name. |
ID | Breakout meeting ID. |
- Returns
- If the function succeeds,will return ZoomSDKError_Success.
◆ delegate