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

Meeting chat callback event. More...

#include <meeting_chat_interface.h>

Public Member Functions

virtual ~IMeetingChatCtrlEvent ()
 
virtual void onChatMsgNotifcation (IChatMsgInfo *chatMsg, const wchar_t *content=NULL)=0
 Chat message callback. This function is used to inform the user once received the message sent by others. More...
 
virtual void onChatStautsChangedNotification (ChatStatus *status_)=0
 The authority of chat changes callback. This function is used to inform the user when the authority of chat changes in the meeting or webinar. More...
 
virtual void onChatMsgDeleteNotification (const wchar_t *msgID, SDKChatMessageDeleteType deleteBy)=0
 Chat message be deleted callback. This function is used to inform the user host/myself the message be deleted. More...
 
virtual void onShareMeetingChatStatusChanged (bool isStart)=0
 

Detailed Description

Meeting chat callback event.

Definition at line 171 of file meeting_chat_interface.h.

Constructor & Destructor Documentation

◆ ~IMeetingChatCtrlEvent()

virtual IMeetingChatCtrlEvent::~IMeetingChatCtrlEvent ( )
inlinevirtual

Definition at line 174 of file meeting_chat_interface.h.

174{}

Member Function Documentation

◆ onChatMsgDeleteNotification()

virtual void IMeetingChatCtrlEvent::onChatMsgDeleteNotification ( const wchar_t *  msgID,
SDKChatMessageDeleteType  deleteBy 
)
pure virtual

Chat message be deleted callback. This function is used to inform the user host/myself the message be deleted.

Parameters
MsgIDis the id of the deleted message.
deleteByIndicates by whom the message was deleted.

◆ onChatMsgNotifcation()

virtual void IMeetingChatCtrlEvent::onChatMsgNotifcation ( IChatMsgInfo chatMsg,
const wchar_t *  content = NULL 
)
pure virtual

Chat message callback. This function is used to inform the user once received the message sent by others.

Parameters
chatMsgAn object pointer to the chat message.
contentA pointer to the chat message in json format. This parameter is currently invalid, hereby only for reservations.

◆ onChatStautsChangedNotification()

virtual void IMeetingChatCtrlEvent::onChatStautsChangedNotification ( ChatStatus status_)
pure virtual

The authority of chat changes callback. This function is used to inform the user when the authority of chat changes in the meeting or webinar.

Parameters
status_The chat status. For more details, see ChatStatus.

◆ onShareMeetingChatStatusChanged()

virtual void IMeetingChatCtrlEvent::onShareMeetingChatStatusChanged ( bool  isStart)
pure virtual