Meeting SDK for macOS API Reference
Loading...
Searching...
No Matches
<ZoomSDKBOMeetingCreatorDelegate> Protocol Reference

Delegate protocol for breakout room creation related callbacks. More...

#include <ZoomSDKNewBreakoutRoomController.h>

Inherits <NSObjectNSObject>.

Instance Methods

(void) - onBOCreateSuccess:
 Callback of breakout room create success.
 
(void) - onWebPreAssignBODataDownloadStatusChanged:
 When the pre-assigned data download status changes, you will receive the event.
 
(void) - onBOOptionChanged:
 You will receive the event when the option changes.
 
(void) - onCreateBOResponse:boID:
 The callback notification of "-createBreakoutRoom:".
 
(void) - onRemoveBOResponse:boID:
 The callback notification of ''-removeBO:'.
 
(void) - onUpdateBONameResponse:boID:
 The callback notification of "-updateBOName:BOID".
 

Detailed Description

Delegate protocol for breakout room creation related callbacks.

Definition at line 118 of file ZoomSDKNewBreakoutRoomController.h.

Method Documentation

◆ onBOCreateSuccess:

- (void) onBOCreateSuccess: (NSString *) boID
optional

Callback of breakout room create success.

Parameters
boIDBreakout meeting ID.
Deprecated
Use ZoomSDKBOMeetingCreatorDelegate::onCreateBOResponse:boID: instead.

◆ onBOOptionChanged:

- (void) onBOOptionChanged: (ZoomSDKBOOption *) newOption
optionalrequired

You will receive the event when the option changes.

Parameters
newOptionThe new bo option.

◆ onCreateBOResponse:boID:

- (void) onCreateBOResponse: (BOOL) bSuccess
boID: (NSString *) boID 
optionalrequired

The callback notification of "-createBreakoutRoom:".

Parameters
bSuccessIndicate whether the creation is actually successful, YES indicates success, NO indicates failure.
boIDIf the creation is successful, its value is the breakout room's ID, otherwise the value is nil.

◆ onRemoveBOResponse:boID:

- (void) onRemoveBOResponse: (BOOL) bSuccess
boID: (NSString *) boID 
optionalrequired

The callback notification of ''-removeBO:'.

Parameters
bSuccessUsed to indicate whether the creation is actually successful, YES indicates success, NO indicates failure.
boIDIdentifies which breakout room is being removed.

◆ onUpdateBONameResponse:boID:

- (void) onUpdateBONameResponse: (BOOL) bSuccess
boID: (NSString *) boID 
optionalrequired

The callback notification of "-updateBOName:BOID".

Parameters
bSuccessUsed to indicate whether the creation is actually successful, YES indicates success, NO indicates failure.
boIDIdentifies which breakout room is being updated.

◆ onWebPreAssignBODataDownloadStatusChanged:

- (void) onWebPreAssignBODataDownloadStatusChanged: (ZoomSDKPreAssignBODataStatus) status
optionalrequired

When the pre-assigned data download status changes, you will receive the event.

Parameters
statusdownload status.