Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IBOCreatorEvent Class Referenceabstract

#include <meeting_breakout_rooms_interface_v2.h>

Public Member Functions

virtual ~IBOCreatorEvent ()
 
virtual void onBOCreateSuccess (const zchar_t *strBOID)=0
 If CreateBO successfully, you will receive the event. Make sure you receive the event before start bo.
 
virtual void OnWebPreAssignBODataDownloadStatusChanged (PreAssignBODataStatus status)=0
 When the pre-assigned data download status changes, you will receive the event.
 
virtual void OnBOOptionChanged (const BOOption &newOption)=0
 You will receive the event when the option changes.
 
virtual void onCreateBOResponse (bool bSuccess, const zchar_t *strBOID)=0
 The callback notification of CreateBreakoutRoom.
 
virtual void onRemoveBOResponse (bool bSuccess, const zchar_t *strBOID)=0
 The callback notification of RemoveBO.
 
virtual void onUpdateBONameResponse (bool bSuccess, const zchar_t *strBOID)=0
 The callback notification of UpdateBOName.
 

Detailed Description

Definition at line 117 of file meeting_breakout_rooms_interface_v2.h.

Constructor & Destructor Documentation

◆ ~IBOCreatorEvent()

virtual IBOCreatorEvent::~IBOCreatorEvent ( )
inlinevirtual

Definition at line 120 of file meeting_breakout_rooms_interface_v2.h.

120{}

Member Function Documentation

◆ onBOCreateSuccess()

virtual void IBOCreatorEvent::onBOCreateSuccess ( const zchar_t * strBOID)
pure virtual

If CreateBO successfully, you will receive the event. Make sure you receive the event before start bo.

Parameters
strBOID,toindicate which bo has been created successfully.
Deprecated
This interface is marked as deprecated, and it is recommended to use 'onCreateBOResponse(bool bSuccess, const zchar_t* strBOID)'.

◆ OnBOOptionChanged()

virtual void IBOCreatorEvent::OnBOOptionChanged ( const BOOption & newOption)
pure virtual

You will receive the event when the option changes.

◆ onCreateBOResponse()

virtual void IBOCreatorEvent::onCreateBOResponse ( bool bSuccess,
const zchar_t * strBOID )
pure virtual

The callback notification of CreateBreakoutRoom.

Parameters
bSuccess,Indicatewhether the creation is actually successful. True indicates success, false indicates failure.
strBOID,Ifthe creation is successful, its value is the breakout room's ID, otherwise the value is nullptr.

◆ onRemoveBOResponse()

virtual void IBOCreatorEvent::onRemoveBOResponse ( bool bSuccess,
const zchar_t * strBOID )
pure virtual

The callback notification of RemoveBO.

Parameters
bSuccess,Indicateswhether the removal was actually successful. True indicates success, false indicates failure.
strBOID,Identifieswhich breakout room is being removed.

◆ onUpdateBONameResponse()

virtual void IBOCreatorEvent::onUpdateBONameResponse ( bool bSuccess,
const zchar_t * strBOID )
pure virtual

The callback notification of UpdateBOName.

Parameters
bSuccess,Indicateswhether the update was actually successful. True indicates success, false indicates failure.
strBOID,Identifieswhich breakout room is being updated.

◆ OnWebPreAssignBODataDownloadStatusChanged()

virtual void IBOCreatorEvent::OnWebPreAssignBODataDownloadStatusChanged ( PreAssignBODataStatus status)
pure virtual

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

Parameters
status,downloadstatus, for more details, see PreAssignBODataStatus.