|
Meeting SDK for macOS API Reference
|
Interface for creating and managing breakout rooms. More...
#include <ZoomSDKNewBreakoutRoomController.h>
Inherits NSObject.
Instance Methods | |
| (BOOL) | - createBreakoutRoom: |
| Creates a breakout room. | |
| (NSString *_Nullable) | - createBOWithBOName: |
| Creator breakout meeting. | |
| (ZoomSDKError) | - createBOWithBONameList: |
| Creator breakout meeting in batch. | |
| (BOOL) | - createWebinarBO: |
| Creator webinar breakout meeting. | |
| (ZoomSDKError) | - updateBOName:BOID: |
| Updates breakout meeting information. '-onUpdateBONameResponse:boID:' is the corresponding callback notification. | |
| (ZoomSDKError) | - removeBO: |
| Removes breakout meeting by ID. '-onRemoveBOResponse:boID:' is the corresponding callback notification. | |
| (ZoomSDKError) | - assignUserToBO:BOID: |
| Assign user to Breakout meeting. | |
| (ZoomSDKError) | - removeUserFromBO:BOID: |
| Removed user from Breakout meeting. | |
| (ZoomSDKError) | - setBOOption: |
| Sets BO option. | |
| (ZoomSDKBOOption *_Nullable) | - getBOOption |
| Gets BO option. | |
| (BOOL) | - isWebPreAssignBOEnabled |
| Checks whether web enabled the pre-assigned option when scheduling a meeting. | |
| (ZoomSDKError) | - requestAndUseWebPreAssignBOList |
| Request web pre-assigned data and create those rooms. | |
| (ZoomSDKPreAssignBODataStatus) | - getWebPreAssignBODataStatus |
| Gets the downloading status of pre-assigned data. | |
Properties | |
| id< ZoomSDKBOMeetingCreatorDelegate > | delegate |
| Sets or get the delegate to receive breakout room creation callbacks. | |
Interface for creating and managing breakout rooms.
Definition at line 167 of file ZoomSDKNewBreakoutRoomController.h.
| - (ZoomSDKError) assignUserToBO: | (NSString *) | userID | |
| BOID: | (NSString *) | ID |
Assign user to Breakout meeting.
| userID | Assigned user ID. |
| ID | Breakout meeting ID. |
| - (NSString *_Nullable) createBOWithBOName: | (NSString *) | name |
Creator breakout meeting.
| name | Breakout meeting name,should less than 50 characters. |
| - (ZoomSDKError) createBOWithBONameList: | (NSArray< NSString * > *_Nullable) | nameList |
Creator breakout meeting in batch.
| nameList | Breakout meeting name list, the element of nameList should less than 50 characters. |
| - (BOOL) createBreakoutRoom: | (NSString *) | name |
Creates a breakout room.
| name | The breakout room name. |
| - (BOOL) createWebinarBO: | (NSArray< NSString * > *) | nameList |
Creator webinar breakout meeting.
| nameList | Breakout meeting name list, the element of nameList should less than 50 characters. |
| - (ZoomSDKBOOption *_Nullable) getBOOption |
Gets BO option.
References getBOOption.
Referenced by getBOOption.
| - (ZoomSDKPreAssignBODataStatus) getWebPreAssignBODataStatus |
Gets the downloading status of pre-assigned data.
References getWebPreAssignBODataStatus.
Referenced by getWebPreAssignBODataStatus.
| - (BOOL) isWebPreAssignBOEnabled |
Checks whether web enabled the pre-assigned option when scheduling a meeting.
References isWebPreAssignBOEnabled.
Referenced by isWebPreAssignBOEnabled.
| - (ZoomSDKError) removeBO: | (NSString *) | BOID |
Removes breakout meeting by ID. '-onRemoveBOResponse:boID:' is the corresponding callback notification.
| BOID | Need remove breakout meeting ID. |
| - (ZoomSDKError) removeUserFromBO: | (NSString *) | userID | |
| BOID: | (NSString *) | ID |
Removed user from Breakout meeting.
| userID | Removed user ID. |
| ID | Breakout meeting ID. |
| - (ZoomSDKError) requestAndUseWebPreAssignBOList |
Request web pre-assigned data and create those rooms.
References requestAndUseWebPreAssignBOList.
Referenced by requestAndUseWebPreAssignBOList.
| - (ZoomSDKError) setBOOption: | (ZoomSDKBOOption *_Nullable) | boOption |
Sets BO option.
| boOption | The option that you want to set. |
| - (ZoomSDKError) updateBOName: | (NSString *) | newName | |
| BOID: | (NSString *) | ID |
Updates breakout meeting information. '-onUpdateBONameResponse:boID:' is the corresponding callback notification.
| newName | Breakout meeting new name. |
| ID | Breakout meeting ID. |
|
readwritenonatomicassign |
Sets or get the delegate to receive breakout room creation callbacks.
Definition at line 171 of file ZoomSDKNewBreakoutRoomController.h.