Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
InMeetingChatController.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.List;
4
9public interface InMeetingChatController {
10
23
40
55
68
73 public boolean isChatDisabled();
74
79 public boolean isPrivateChatDisabled();
80
87
94
100 public boolean allowAttendeeChat(MobileRTCWebinarChatPrivilege privilege);//webinar
101
108
115
121
127
133
140
147
154
161
166 List<String> getAllChatMessageID();
167
173 boolean isChatMessageCanBeDeleted(String msgId);
174
181
188
195
202
210 MobileRTCSDKError transferFile(String filePath, long toUser);
211
219
226
233}
Enumeration of the panelist chat privilege in webinar meeting.
Enumeration of common errors of SDK.
MobileRTCWebinarChatPrivilege getWebinarAttendeeChatPrivilege()
Get the chat privilege of the webinar attendee.
boolean isMeetingChatLegalNoticeAvailable()
Whether chat legal notice is available.
boolean allowAttendeeChat(MobileRTCWebinarChatPrivilege privilege)
Only webinar host/co-host can run the function.
List< String > getAllChatMessageID()
Get all chat message id.
boolean isChatDisabled()
Query if it is disabled to chat in the current meeting.
MobileRTCSDKError sendChatMsgTo(InMeetingChatMessage msg)
Send a chat message.
MobileRTCSDKError setPanelistChatPrivilege(MobileRTCWebinarPanelistChatPrivilege privilege)
Set the chat privilege of the panelist.
MobileRTCSDKError deleteChatMessage(String msgId)
Delete chat message by message id.
boolean changeAttendeeChatPrivilege(MobileRTCMeetingChatPrivilege privilege)
Only meeting host/co-host can run the function.
long getMaxTransferFileSize()
Get the maximum size for file transfer.
MobileRTCSDKError transferFileToAll(String filePath)
Send file to all users in current meeting.
boolean isPrivateChatDisabled()
Query if meeting participants can send private 1:1 message to another participant.
boolean isFileTransferEnable()
Determine whether file transfer is enabled.
String getTransferFileTypeAllowList()
Get the list of allowed file types in transfer.
MobileRTCSDKError transferFile(String filePath, long toUser)
Send file to specify user in current meeting.
String getChatLegalNoticesPrompt()
Return chat legal notice prompt.
boolean isChatMessageCanBeDeleted(String msgId)
Determine whether the message can be delete.
String getChatLegalNoticesExplained()
Return explained text for chat legal notice.
InMeetingChatMessage getChatMessageById(String msgID)
Get chat message by message ID.
MobileRTCMeetingChatPrivilege getMeetingAttendeeChatPrivilege()
Get the chat privilege of the meeting participant.
String getShareMeetingChatStartedLegalNoticeContent()
Return meeting chat legal notice content when start to share meeting chat.
String getShareMeetingChatStoppedLegalNoticeContent()
Return meeting chat legal notice content when stop to share meeting chat.
MobileRTCWebinarPanelistChatPrivilege getPanelistChatPrivilege()
Get the chat privilege of the panelist.
boolean isShareMeetingChatLegalNoticeAvailable()
Whether meeting chat legal notice is available.
Chat message in zoom meeting.