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

BO admin callback handler. More...

#include <meeting_breakout_rooms_interface_v2.h>

Public Member Functions

virtual ~IBOAdminEvent ()
 
virtual void onHelpRequestReceived (const zchar_t *strUserID)=0
 when someone send the request help, notify it.
 
virtual void onStartBOError (BOControllerError errCode)=0
 when StartBO fail, you will receive the event.
 
virtual void onBOEndTimerUpdated (int remaining, bool isTimesUpNotice)=0
 if it's timer BO, after start BO, you will receive the event.
 
virtual void onStartBOResponse (bool bSuccess)=0
 The callback notification of StartBO.
 
virtual void onStopBOResponse (bool bSuccess)=0
 The callback notification of StopBO.
 

Detailed Description

BO admin callback handler.

Definition at line 315 of file meeting_breakout_rooms_interface_v2.h.

Constructor & Destructor Documentation

◆ ~IBOAdminEvent()

virtual IBOAdminEvent::~IBOAdminEvent ( )
inlinevirtual

Definition at line 319 of file meeting_breakout_rooms_interface_v2.h.

319{}

Member Function Documentation

◆ onBOEndTimerUpdated()

virtual void IBOAdminEvent::onBOEndTimerUpdated ( int remaining,
bool isTimesUpNotice )
pure virtual

if it's timer BO, after start BO, you will receive the event.

Parameters
[remaining]remaining time, [isTimesUpNotice] true: when time is up, auto stop BO. false: don't auto stop BO.

◆ onHelpRequestReceived()

virtual void IBOAdminEvent::onHelpRequestReceived ( const zchar_t * strUserID)
pure virtual

when someone send the request help, notify it.

Parameters
strUserID,isthe user ID which send the request help.

◆ onStartBOError()

virtual void IBOAdminEvent::onStartBOError ( BOControllerError errCode)
pure virtual

when StartBO fail, you will receive the event.

Parameters
errCode,identifythe specific error code for trouble shooting.

◆ onStartBOResponse()

virtual void IBOAdminEvent::onStartBOResponse ( bool bSuccess)
pure virtual

The callback notification of StartBO.

Parameters
bSuccess,Indicateswhether the startup is actually successful. True indicates success, and false indicates failure.

◆ onStopBOResponse()

virtual void IBOAdminEvent::onStopBOResponse ( bool bSuccess)
pure virtual

The callback notification of StopBO.

Parameters
bSuccess,Indicateswhether the stop is actually successful. True indicates success, and false indicates failure.