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

Meeting chat callback event. More...

#include <meeting_chat_interface.h>

Public Member Functions

virtual ~IMeetingChatCtrlEvent ()
 
virtual void onChatMsgNotification (IChatMsgInfo *chatMsg, const zchar_t *content=nullptr)=0
 Chat message callback. This function is used to inform the user once received the message sent by others.
 
virtual void onChatStatusChangedNotification (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.
 
virtual void onChatMsgDeleteNotification (const zchar_t *msgID, SDKChatMessageDeleteType deleteBy)=0
 Chat message be deleted callback. This function is used to inform the user host/myself the message be deleted.
 
virtual void onChatMessageEditNotification (IChatMsgInfo *chatMsg)=0
 Chat message be edited callback.
 
virtual void onShareMeetingChatStatusChanged (bool isStart)=0
 
virtual void onFileSendStart (ISDKFileSender *sender)=0
 Invoked when start send file.
 
virtual void onFileReceived (ISDKFileReceiver *receiver)=0
 Invoked when receiving a file from another user.
 
virtual void onFileTransferProgress (SDKFileTransferInfo *info)=0
 Invoked when send or receive file status change.
 

Detailed Description

Meeting chat callback event.

Definition at line 471 of file meeting_chat_interface.h.

Constructor & Destructor Documentation

◆ ~IMeetingChatCtrlEvent()

virtual IMeetingChatCtrlEvent::~IMeetingChatCtrlEvent ( )
inlinevirtual

Definition at line 474 of file meeting_chat_interface.h.

474{}

Member Function Documentation

◆ onChatMessageEditNotification()

virtual void IMeetingChatCtrlEvent::onChatMessageEditNotification ( IChatMsgInfo * chatMsg)
pure virtual

Chat message be edited callback.

Parameters
chatMsgAn object pointer to the chat message.

◆ onChatMsgDeleteNotification()

virtual void IMeetingChatCtrlEvent::onChatMsgDeleteNotification ( const zchar_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.

◆ onChatMsgNotification()

virtual void IMeetingChatCtrlEvent::onChatMsgNotification ( IChatMsgInfo * chatMsg,
const zchar_t * content = nullptr )
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.

◆ onChatStatusChangedNotification()

virtual void IMeetingChatCtrlEvent::onChatStatusChangedNotification ( 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.

◆ onFileReceived()

virtual void IMeetingChatCtrlEvent::onFileReceived ( ISDKFileReceiver * receiver)
pure virtual

Invoked when receiving a file from another user.

Parameters
receiverThe class to receive the file object.

◆ onFileSendStart()

virtual void IMeetingChatCtrlEvent::onFileSendStart ( ISDKFileSender * sender)
pure virtual

Invoked when start send file.

Parameters
senderThe class to send file object.

◆ onFileTransferProgress()

virtual void IMeetingChatCtrlEvent::onFileTransferProgress ( SDKFileTransferInfo * info)
pure virtual

Invoked when send or receive file status change.

Parameters
infoThe class to basic transfer information.

◆ onShareMeetingChatStatusChanged()

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