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

Meeting service callback event. More...

#include <meeting_service_interface.h>

Public Member Functions

virtual ~IMeetingServiceEvent ()
 
virtual void onMeetingStatusChanged (MeetingStatus status, int iResult=0)=0
 Meeting status changed callback.
 
virtual void onMeetingStatisticsWarningNotification (StatisticsWarningType type)=0
 Meeting statistics warning notification callback.
 
virtual void onMeetingParameterNotification (const MeetingParameter *meeting_param)=0
 Meeting parameter notification callback.
 
virtual void onSuspendParticipantsActivities ()=0
 Callback event when a meeting is suspended.
 
virtual void onAICompanionActiveChangeNotice (bool bActive)=0
 Callback event for the AI Companion active status changed.
 
virtual void onMeetingTopicChanged (const zchar_t *sTopic)=0
 Callback event for the meeting topic changed.
 
virtual void onMeetingFullToWatchLiveStream (const zchar_t *sLiveStreamUrl)=0
 Calback event that the meeting users have reached the meeting capacity. The new join user can not join meeting, but they can watch the meeting live stream.
 

Detailed Description

Meeting service callback event.

Definition at line 459 of file meeting_service_interface.h.

Constructor & Destructor Documentation

◆ ~IMeetingServiceEvent()

virtual IMeetingServiceEvent::~IMeetingServiceEvent ( )
inlinevirtual

Definition at line 462 of file meeting_service_interface.h.

462{}

Member Function Documentation

◆ onAICompanionActiveChangeNotice()

virtual void IMeetingServiceEvent::onAICompanionActiveChangeNotice ( bool bActive)
pure virtual

Callback event for the AI Companion active status changed.

Parameters
activeSpecify whether the AI Companion active or not.

◆ onMeetingFullToWatchLiveStream()

virtual void IMeetingServiceEvent::onMeetingFullToWatchLiveStream ( const zchar_t * sLiveStreamUrl)
pure virtual

Calback event that the meeting users have reached the meeting capacity. The new join user can not join meeting, but they can watch the meeting live stream.

Parameters
sLiveStreamUrlThe live stream URL to watch the meeting live stream.

◆ onMeetingParameterNotification()

virtual void IMeetingServiceEvent::onMeetingParameterNotification ( const MeetingParameter * meeting_param)
pure virtual

Meeting parameter notification callback.

Parameters
meeting_paramMeeting parameter. For more details, see MeetingParameter.
Remarks
The callback will be triggered right before the meeting starts. The meeting_param will be destroyed once the function calls end.

◆ onMeetingStatisticsWarningNotification()

virtual void IMeetingServiceEvent::onMeetingStatisticsWarningNotification ( StatisticsWarningType type)
pure virtual

Meeting statistics warning notification callback.

Parameters
typeThe warning type of the meeting statistics. For more details, see StatisticsWarningType.

◆ onMeetingStatusChanged()

virtual void IMeetingServiceEvent::onMeetingStatusChanged ( MeetingStatus status,
int iResult = 0 )
pure virtual

Meeting status changed callback.

Parameters
statusThe value of meeting. For more details, see MeetingStatus.
iResultDetailed reasons for special meeting status. If the status is MEETING_STATUS_FAILED, the value of iResult is one of those listed in MeetingFailCode enum. If the status is MEETING_STATUS_ENDED, the value of iResult is one of those listed in MeetingEndReason.

◆ onMeetingTopicChanged()

virtual void IMeetingServiceEvent::onMeetingTopicChanged ( const zchar_t * sTopic)
pure virtual

Callback event for the meeting topic changed.

Parameters
sTopicThe new meeting topic.

◆ onSuspendParticipantsActivities()

virtual void IMeetingServiceEvent::onSuspendParticipantsActivities ( )
pure virtual

Callback event when a meeting is suspended.