public static interface InMeetingWebinarController.InMeetingWebinarListener
extends us.zoom.androidlib.util.IListener
Modifier and Type | Method and Description |
---|---|
void |
onAllowAttendeeChatResult()
Sink the event that attendee is enabled to chat.
|
void |
onAllowPanelistStartVideoNotification()
Sink the event that panelist is enabled to start video.
|
void |
onAttendeeAudioStatusNotification(long userId,
boolean can_talk,
boolean is_muted)
Sink the event that attendee's audio status changes.
|
void |
onDepromptPanelist2AttendeeResult(long result)
Sink the event of the result of demoting the panelist to attendee.
|
void |
onDisallowAttendeeChatResult()
Sink the event that attendee is disabled to chat.
|
void |
onDisallowPanelistStartVideoNotification()
Sink the event that panelist is disabled to start video.
|
void |
onPromptAttendee2PanelistResult(long result)
Sink the event of the result of promoting the attendee to panelist.
|
void |
onSelfAllowTalkNotification()
Sink the event that attendees are allowed to talk.
|
void |
onSelfDisallowTalkNotification()
Sink the event that attendees are forbidden to talk.
|
void onPromptAttendee2PanelistResult(long result)
result
- The result that attendees are prompted to panelist. If the function succeeds, the result is zero, otherwise is the error.void onDepromptPanelist2AttendeeResult(long result)
result
- The result that panelist is demoted to attendee. If the function succeeds, the result is zero, otherwise is the error.void onSelfAllowTalkNotification()
void onSelfDisallowTalkNotification()
void onAllowPanelistStartVideoNotification()
void onDisallowPanelistStartVideoNotification()
void onAllowAttendeeChatResult()
void onDisallowAttendeeChatResult()
void onAttendeeAudioStatusNotification(long userId, boolean can_talk, boolean is_muted)
userId
- The ID of user whose audio status changes.can_talk
- TRUE means that attendee is able to talk in the meeting. FALSE not.is_muted
- TRUE means that attendee is muted. FALSE not. If the value of can_talk is TRUE, attendee is not muted.