public interface InMeetingChatController
Modifier and Type | Interface and Description |
---|---|
static class |
InMeetingChatController.MobileRTCChatGroup
Chat group in meeting.
|
static class |
InMeetingChatController.MobileRTCMeetingChatPriviledge
An enumeration of meeting chat priviledge types
|
static class |
InMeetingChatController.MobileRTCWebinarChatPriviledge
An enumeration of webinar chat priviledge types
|
Modifier and Type | Method and Description |
---|---|
boolean |
allowAttendeeChat(InMeetingChatController.MobileRTCWebinarChatPriviledge priviledge)
Only webinar host/co-host can run the function
|
boolean |
changeAttendeeChatPriviledge(InMeetingChatController.MobileRTCMeetingChatPriviledge priviledge)
Only meeting host/co-host can run the function
|
boolean |
isChatDisabled()
Query if it is disabled to chat in the current meeting.
|
boolean |
isPrivateChatDisabled()
Query if meeting participants can send private 1:1 message to another participant.
|
MobileRTCSDKError |
sendChatToGroup(InMeetingChatController.MobileRTCChatGroup group,
java.lang.String content)
Set to send chat message to a group in the meeting.
|
MobileRTCSDKError |
sendChatToUser(long receiver,
java.lang.String content)
Set to send chat message to a specified user or all participants.
|
boolean isChatDisabled()
boolean isPrivateChatDisabled()
MobileRTCSDKError sendChatToUser(long receiver, java.lang.String content)
receiver
- The specified user who receives the chat message.content
- The chat message content.MobileRTCSDKError
.MobileRTCSDKError sendChatToGroup(InMeetingChatController.MobileRTCChatGroup group, java.lang.String content)
group
- The group in the meeting defined in InMeetingChatController.MobileRTCChatGroup
, who receives the chat message.content
- The chat message content.MobileRTCSDKError
.boolean allowAttendeeChat(InMeetingChatController.MobileRTCWebinarChatPriviledge priviledge)
priviledge
- The priviledge will be setted.boolean changeAttendeeChatPriviledge(InMeetingChatController.MobileRTCMeetingChatPriviledge priviledge)
priviledge
- The priviledge will be setted.