Windows SDK API Reference
Loading...
Searching...
No Matches
IMeetingBOController Class Referenceabstract

Meeting breakout rooms controller interface. More...

#include <meeting_breakout_rooms_interface_v2.h>

Public Member Functions

virtual bool SetEvent (IMeetingBOControllerEvent *event)=0
 Set breakout room callback event handler. More...
 
virtual IBOCreatorGetBOCreatorHelper ()=0
 Get the pointer of BO creator object. More...
 
virtual IBOAdminGetBOAdminHelper ()=0
 Get the pointer of BO administrator object. More...
 
virtual IBOAssistantGetBOAssistantHelper ()=0
 Get the pointer of BO assistant object. More...
 
virtual IBOAttendeeGetBOAttedeeHelper ()=0
 Get the pointer of BO attendee object. More...
 
virtual IBODataGetBODataHelper ()=0
 Get the pointer of BO data object. More...
 
virtual bool IsBOStarted ()=0
 Determine if the BO is started or not. More...
 
virtual bool IsBOEnabled ()=0
 Determine if the BO feature is enabled in current meeting. More...
 
virtual bool IsInBOMeeting ()=0
 Determine if myself is in BO meeting. More...
 
virtual BO_STATUS GetBOStatus ()=0
 Get current BO status. More...
 

Detailed Description

Meeting breakout rooms controller interface.

Definition at line 525 of file meeting_breakout_rooms_interface_v2.h.

Member Function Documentation

◆ GetBOAdminHelper()

virtual IBOAdmin * IMeetingBOController::GetBOAdminHelper ( )
pure virtual

Get the pointer of BO administrator object.

Returns
If the function succeeds, the return value is a pointer to IBOAdmin object. For more details, see IBOAdmin, Otherwise failed, the return value is NULL.

◆ GetBOAssistantHelper()

virtual IBOAssistant * IMeetingBOController::GetBOAssistantHelper ( )
pure virtual

Get the pointer of BO assistant object.

Returns
If the function succeeds, the return value is a pointer to IBOAssistant object. For more details, see IBOAssistant, Otherwise failed, the return value is NULL.

◆ GetBOAttedeeHelper()

virtual IBOAttendee * IMeetingBOController::GetBOAttedeeHelper ( )
pure virtual

Get the pointer of BO attendee object.

Returns
If the function succeeds, the return value is a pointer to IBOAttendee object. For more details, see IBOAttendee, Otherwise failed, the return value is NULL.

◆ GetBOCreatorHelper()

virtual IBOCreator * IMeetingBOController::GetBOCreatorHelper ( )
pure virtual

Get the pointer of BO creator object.

Returns
If the function succeeds, the return value is a pointer to IBOCreator object. For more details, see IBOCreator, Otherwise failed, the return value is NULL.

◆ GetBODataHelper()

virtual IBOData * IMeetingBOController::GetBODataHelper ( )
pure virtual

Get the pointer of BO data object.

Returns
If the function succeeds, the return value is a pointer to IBOData object. For more details, see IBOData, Otherwise failed, the return value is NULL.

◆ GetBOStatus()

virtual BO_STATUS IMeetingBOController::GetBOStatus ( )
pure virtual

Get current BO status.

Returns
The return value is a enum for bo status. For more details, see BO_STATUS.

◆ IsBOEnabled()

virtual bool IMeetingBOController::IsBOEnabled ( )
pure virtual

Determine if the BO feature is enabled in current meeting.

Returns
true indicates that BO feature is enabled in current meeting.

◆ IsBOStarted()

virtual bool IMeetingBOController::IsBOStarted ( )
pure virtual

Determine if the BO is started or not.

Returns
true indicates that host has started the BO, otherwise not.

◆ IsInBOMeeting()

virtual bool IMeetingBOController::IsInBOMeeting ( )
pure virtual

Determine if myself is in BO meeting.

Returns
true indicates that i am in a BO meeting.

◆ SetEvent()

virtual bool IMeetingBOController::SetEvent ( IMeetingBOControllerEvent event)
pure virtual

Set breakout room callback event handler.

Parameters
event,Apointer to the IMeetingBOControllerEvent. For more details, see IMeetingBOControllerEvent.
Returns
If the function succeeds, the return value is true. Otherwise false.