BO creator interface.
More...
#include <meeting_breakout_rooms_interface_v2.h>
BO creator interface.
Definition at line 222 of file meeting_breakout_rooms_interface_v2.h.
◆ AssignUserToBO()
virtual bool IBOCreator::AssignUserToBO |
( |
const zchar_t * | strUserID, |
|
|
const zchar_t * | strBOID ) |
|
pure virtual |
Assign a user to a BO.
- Parameters
-
strUserID,is | the user ID. |
strBOID,is | the BO ID. |
- Returns
- if success the return value is true, otherwise false.
◆ CreateBO()
virtual const zchar_t * IBOCreator::CreateBO |
( |
const zchar_t * | strBOName | ) |
|
|
pure virtual |
◆ CreateBreakoutRoom()
virtual bool IBOCreator::CreateBreakoutRoom |
( |
const zchar_t * | strBOName | ) |
|
|
pure virtual |
Create a breakout room.
- Parameters
-
strBOName,the | breakout room name. |
- Returns
- if success the return value is true. Otherwise false. Note:
- This function is compatible with meeting breakout room and webinar breakout room.
- This function is asynchronous. onCreateBOResponse is the corresponding callback notification.
- Webinar breakout room only support Zoomui Mode
◆ CreateWebinarBo()
virtual bool IBOCreator::CreateWebinarBo |
( |
const zchar_t * | strBOName | ) |
|
|
pure virtual |
◆ GetBatchCreateBOHelper()
Get the Batch create bo controller.
- Returns
- If the function succeeds, the return value is a pointer to IBatchCreateBOHelper. Otherwise returns nullptr.
◆ GetBOOption()
virtual bool IBOCreator::GetBOOption |
( |
BOOption & | option | ) |
|
|
pure virtual |
Get BO option.
- Parameters
-
option,Get | the current bo option through this parameter. |
- Returns
- if success the return value is true, otherwise false.
◆ GetWebPreAssignBODataStatus()
Get the pre-assigned data download status.
- Returns
- The return value is a enum for download status. For more details, see PreAssignBODataStatus.
◆ IsWebPreAssignBOEnabled()
virtual bool IBOCreator::IsWebPreAssignBOEnabled |
( |
| ) |
|
|
pure virtual |
Determine whether web enabled the pre-assigned option when scheduling a meeting.
- Returns
- true if it is enabled, otherwise false.
◆ RemoveBO()
virtual bool IBOCreator::RemoveBO |
( |
const zchar_t * | strBOID | ) |
|
|
pure virtual |
Remove a breakout room, 'IBOCreatorEvent.onRemoveBOResponse' is the corresponding callback notification.
- Parameters
-
strBOID,is | the breakout room ID. |
- Returns
- if success the return value is true. Otherwise false.
◆ RemoveUserFromBO()
virtual bool IBOCreator::RemoveUserFromBO |
( |
const zchar_t * | strUserID, |
|
|
const zchar_t * | strBOID ) |
|
pure virtual |
Remove some user from a BO.
- Parameters
-
strUserID,is | the user ID. |
strBOID,is | the BO ID. |
- Returns
- if success the return value is true, otherwise false.
◆ RequestAndUseWebPreAssignBOList()
virtual SDKError IBOCreator::RequestAndUseWebPreAssignBOList |
( |
| ) |
|
|
pure virtual |
Request web pre-assigned data and create those rooms.
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum
◆ SetBOOption()
virtual bool IBOCreator::SetBOOption |
( |
const BOOption & | option | ) |
|
|
pure virtual |
Set BO option.
- Parameters
-
option,the | option that you want to set. |
- Returns
- if success the return value is true, otherwise false.
◆ SetEvent()
◆ UpdateBOName()
virtual bool IBOCreator::UpdateBOName |
( |
const zchar_t * | strBOID, |
|
|
const zchar_t * | strNewBOName ) |
|
pure virtual |
Update BO name, 'IBOCreatorEvent.onUpdateBONameResponse' is the corresponding callback notification.
- Parameters
-
strBOID,is | the breakout room's ID. |
strNewBOName,is | the new breakout room's name. |
- Returns
- if success the return value is true. Otherwise false.