Meeting chat controller interface.
More...
#include <meeting_chat_interface.h>
Meeting chat controller interface.
Definition at line 716 of file meeting_chat_interface.h.
◆ DeleteChatMessage()
virtual SDKError IMeetingChatController::DeleteChatMessage |
( |
const zchar_t * | msgID | ) |
|
|
pure virtual |
Delete chat message by message id.
- Parameters
-
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ GetAllChatMessageID()
virtual IList< const zchar_t * > * IMeetingChatController::GetAllChatMessageID |
( |
| ) |
|
|
pure virtual |
◆ getChatLegalNoticesExplained()
virtual const zchar_t * IMeetingChatController::getChatLegalNoticesExplained |
( |
| ) |
|
|
pure virtual |
Get the chat legal notices explained.
◆ getChatLegalNoticesPrompt()
virtual const zchar_t * IMeetingChatController::getChatLegalNoticesPrompt |
( |
| ) |
|
|
pure virtual |
Get the chat legal notices prompt.
◆ GetChatMessageBuilder()
Get the chat message builder which can help construct the message entity.
◆ GetChatMessageById()
Get chat message by message ID.
- Parameters
-
◆ GetChatStatus()
virtual const ChatStatus * IMeetingChatController::GetChatStatus |
( |
| ) |
|
|
pure virtual |
Get the authority status to send current message.
- Returns
- If the function succeeds, the return value is a pointer to the structure of ChatStatus. For more details, see ChatStatus structure. Otherwise failed, the return value is nullptr. To get extended error information, see ChatStatus.
◆ GetMaxTransferFileSizeBytes()
virtual unsigned long long IMeetingChatController::GetMaxTransferFileSizeBytes |
( |
| ) |
|
|
pure virtual |
Get the maximum size for file transfer.
- Returns
- The maximum number of bytes for file transfer.
◆ GetShareMeetingChatStartedLegalNoticeContent()
virtual const zchar_t * IMeetingChatController::GetShareMeetingChatStartedLegalNoticeContent |
( |
| ) |
|
|
pure virtual |
Get the sharing in meeting chat started legal notices content.
◆ GetShareMeetingChatStoppedLegalNoticeContent()
virtual const zchar_t * IMeetingChatController::GetShareMeetingChatStoppedLegalNoticeContent |
( |
| ) |
|
|
pure virtual |
Get the sharing in meeting chat stopped legal notices content.
◆ GetTransferFileTypeAllowList()
virtual const zchar_t * IMeetingChatController::GetTransferFileTypeAllowList |
( |
| ) |
|
|
pure virtual |
Get the list of allowed file types in transfer.
- Returns
- The value of allowed file types in transfer, comma-separated if there are multiple values. Exe files are by default forbidden from being transferred.
◆ IsChatMessageCanBeDeleted()
virtual bool IMeetingChatController::IsChatMessageCanBeDeleted |
( |
const zchar_t * | msgID | ) |
|
|
pure virtual |
Determine whether the message can be delete.
- Parameters
-
- Returns
- True indicates the message can be delete. Otherwise False.
◆ IsFileTransferEnabled()
virtual bool IMeetingChatController::IsFileTransferEnabled |
( |
| ) |
|
|
pure virtual |
Determine whether file transfer is enabled.
- Returns
- True indicates file transfer is enabled, otherwise false.
◆ IsMeetingChatLegalNoticeAvailable()
virtual bool IMeetingChatController::IsMeetingChatLegalNoticeAvailable |
( |
| ) |
|
|
pure virtual |
Determine whether the legal notice for chat is available.
- Returns
- True indicates the legal notice for chat is available. Otherwise False.
◆ IsShareMeetingChatLegalNoticeAvailable()
virtual bool IMeetingChatController::IsShareMeetingChatLegalNoticeAvailable |
( |
| ) |
|
|
pure virtual |
Determine whether the legal notice for sharing in meeting chat is available.
- Returns
- True indicates the legal notice for chat is available. Otherwise False.
◆ SendChatMsgTo()
Send a chat message.
- Parameters
-
msg | Specify the message detail info . |
◆ SetEvent()
Set meeting chat callback event.
- Parameters
-
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ SetParticipantsChatPrivilege()
Set the chat privilege of participants.
- Parameters
-
priviledge | The chat priviledge of participants |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ TransferFile()
virtual SDKError IMeetingChatController::TransferFile |
( |
const zchar_t * | filePath, |
|
|
unsigned int | userid ) |
|
pure virtual |
Send file to specify user in current session.
- Parameters
-
filePath | The absolute path of the file. |
user | Send the file to this user. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ TransferFileToAll()
virtual SDKError IMeetingChatController::TransferFileToAll |
( |
const zchar_t * | filePath | ) |
|
|
pure virtual |
Send file to all users in current session.
- Parameters
-
filePath | The absolute path of the file. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.