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

Meeting AI companion query callback event. More...

#include <meeting_ai_companion_interface.h>

Public Member Functions

virtual ~IMeetingAICompanionQueryHelperEvent ()
 
virtual void onQueryStateNotSupported ()=0
 Callback event that the meeting does not support query.
 
virtual void onQueryStateSupportedButDisabled (IMeetingEnableQueryHandler *pHandler)=0
 Callback event that the meeting supports query but query feature is disabled.
 
virtual void onQueryStateEnabledButNotStarted (IMeetingStartQueryHandler *pHandler)=0
 Callback event that the query is not started.
 
virtual void onQueryStateStarted (IMeetingSendQueryHandler *pHandler)=0
 Callback event that the query is started.
 
virtual void onQuerySettingChanged (MeetingAICompanionQuerySettingOptions eSetting)=0
 Callback event that the query setting is changed.
 
virtual void onFailedToStartQuery (bool bTimeout)=0
 Callback event that the query failed to start.
 
virtual void onReceiveRequestToEnableQuery (IMeetingApproveEnableQueryHandler *pHandler)=0
 Callback event that receiving request to enable query.
 
virtual void onReceiveRequestToStartQuery (IMeetingApproveStartQueryHandler *pHandler)=0
 Callback event that receiving request to start query.
 
virtual void onReceiveQueryAnswer (IMeetingAICompanionQueryItem *pQueryItem)=0
 Callback event that receiving query answer.
 
virtual void onQueryEnableActionCallback (IMeetingEnableQueryActionHandler *pHandler)=0
 Callback event that receiving query enable action callback.
 
virtual void onSendQueryPrivilegeChanged (bool canSendQuery)=0
 Callback event that getting or losing send query question privilege.
 
virtual void onFailedToRequestSendQuery (bool bTimeout)=0
 Callback event that the request to send query failed.
 
virtual void onReceiveRequestToSendQuery (IMeetingApproveSendQueryHandler *pHandler)=0
 Callback event that receiving request to send query.
 

Detailed Description

Meeting AI companion query callback event.

Definition at line 534 of file meeting_ai_companion_interface.h.

Constructor & Destructor Documentation

◆ ~IMeetingAICompanionQueryHelperEvent()

virtual IMeetingAICompanionQueryHelperEvent::~IMeetingAICompanionQueryHelperEvent ( )
inlinevirtual

Definition at line 537 of file meeting_ai_companion_interface.h.

537{}

Member Function Documentation

◆ onFailedToRequestSendQuery()

virtual void IMeetingAICompanionQueryHelperEvent::onFailedToRequestSendQuery ( bool bTimeout)
pure virtual

Callback event that the request to send query failed.

Parameters
bTimeouttrue means that the request timed out. Otherwise means that the user declines the request.

◆ onFailedToStartQuery()

virtual void IMeetingAICompanionQueryHelperEvent::onFailedToStartQuery ( bool bTimeout)
pure virtual

Callback event that the query failed to start.

Parameters
bTimeouttrue means is timeout. Otherwise means the user declines the request.

◆ onQueryEnableActionCallback()

virtual void IMeetingAICompanionQueryHelperEvent::onQueryEnableActionCallback ( IMeetingEnableQueryActionHandler * pHandler)
pure virtual

Callback event that receiving query enable action callback.

Parameters
pHandlerThe handler to enable the query. For more details, see IMeetingEnableQueryActionHandler.

◆ onQuerySettingChanged()

virtual void IMeetingAICompanionQueryHelperEvent::onQuerySettingChanged ( MeetingAICompanionQuerySettingOptions eSetting)
pure virtual

Callback event that the query setting is changed.

Parameters
eSettingThe selected query setting. For more details, see MeetingAICompanionQuerySettingOptions.

◆ onQueryStateEnabledButNotStarted()

virtual void IMeetingAICompanionQueryHelperEvent::onQueryStateEnabledButNotStarted ( IMeetingStartQueryHandler * pHandler)
pure virtual

Callback event that the query is not started.

Parameters
pHandlerThe handler to start the query. For more details, see IMeetingStartQueryHandler.

◆ onQueryStateNotSupported()

virtual void IMeetingAICompanionQueryHelperEvent::onQueryStateNotSupported ( )
pure virtual

Callback event that the meeting does not support query.

◆ onQueryStateStarted()

virtual void IMeetingAICompanionQueryHelperEvent::onQueryStateStarted ( IMeetingSendQueryHandler * pHandler)
pure virtual

Callback event that the query is started.

Parameters
pHandlerThe handler to send query. For more details, see IMeetingSendQueryHandler.

◆ onQueryStateSupportedButDisabled()

virtual void IMeetingAICompanionQueryHelperEvent::onQueryStateSupportedButDisabled ( IMeetingEnableQueryHandler * pHandler)
pure virtual

Callback event that the meeting supports query but query feature is disabled.

Parameters
pHandlerThe handler to enable the query. For more details, see IMeetingEnableQueryHandler.

◆ onReceiveQueryAnswer()

virtual void IMeetingAICompanionQueryHelperEvent::onReceiveQueryAnswer ( IMeetingAICompanionQueryItem * pQueryItem)
pure virtual

Callback event that receiving query answer.

Parameters
pHandlerThe object of IMeetingAICompanionQueryItem. For more details, see IMeetingAICompanionQueryItem.

◆ onReceiveRequestToEnableQuery()

virtual void IMeetingAICompanionQueryHelperEvent::onReceiveRequestToEnableQuery ( IMeetingApproveEnableQueryHandler * pHandler)
pure virtual

Callback event that receiving request to enable query.

Parameters
pHandlerThe handler to handle the request. For more details, see IMeetingApproveEnableQueryHandler.

◆ onReceiveRequestToSendQuery()

virtual void IMeetingAICompanionQueryHelperEvent::onReceiveRequestToSendQuery ( IMeetingApproveSendQueryHandler * pHandler)
pure virtual

Callback event that receiving request to send query.

Parameters
handlerThe handler to handle the request. For more details, see IMeetingApproveSendQueryHandler.

◆ onReceiveRequestToStartQuery()

virtual void IMeetingAICompanionQueryHelperEvent::onReceiveRequestToStartQuery ( IMeetingApproveStartQueryHandler * pHandler)
pure virtual

Callback event that receiving request to start query.

Parameters
pHandlerThe handler to handle the request. For more details, see IMeetingApproveStartQueryHandler.

◆ onSendQueryPrivilegeChanged()

virtual void IMeetingAICompanionQueryHelperEvent::onSendQueryPrivilegeChanged ( bool canSendQuery)
pure virtual

Callback event that getting or losing send query question privilege.

Parameters
canSendQueryYES means can send. Otherwise not.