Package us.zoom.sdk
Interface InMeetingBOControllerListener
- All Superinterfaces:
us.zoom.core.interfaces.IListener
public interface InMeetingBOControllerListener
extends us.zoom.core.interfaces.IListener
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onBOOptionChanged
(BOOption newOption) You will receive the event when the option changes.void
onBOStatusChanged
(BOStatus status) When host change the BO status, all users receive the eventvoid
onBOStopCountDown
(int seconds) When BOOption.countdown_seconds != BO_STOP_NOT_COUNTDOWN, host stop BO and all users receive the event.void
onBOSwitchRequestReceived
(String strNewBOName, String strNewBOID) Whenever the host switches you to another BO while you are assigned but haven't joined the BO, you will receive this event.void
onBroadcastBOVoiceStatus
(boolean start) The status of broadcasting voice to bo has been changed.void
onHasAdminRightsNotification
(IBOAdmin iboAdmin) void
onHasAssistantRightsNotification
(IBOAssistant iboAssistant) void
onHasAttendeeRightsNotification
(IBOAttendee iboAttendee) void
onHasCreatorRightsNotification
(IBOCreator creator) void
onHasDataHelperRightsNotification
(IBOData iboData) void
onHostInviteReturnToMainSession
(String name, ReturnToMainSessionHandler handler) When you are in BO, host invite you return to main session, you will receive the eventvoid
void
void
void
void
void
onNewBroadcastMessageReceived
(String message, long senderId, String senderName) void
onShareFromMainSession
(long sharingId, SharingStatus status, IShareAction shareAction) You will receive this event when you are in a breakout room,and someone shares from the main session to the breakout room,
-
Method Details
-
onHasCreatorRightsNotification
-
onHasAdminRightsNotification
-
onHasAssistantRightsNotification
-
onHasAttendeeRightsNotification
-
onHasDataHelperRightsNotification
-
onLostCreatorRightsNotification
void onLostCreatorRightsNotification() -
onLostAdminRightsNotification
void onLostAdminRightsNotification() -
onLostAssistantRightsNotification
void onLostAssistantRightsNotification() -
onLostAttendeeRightsNotification
void onLostAttendeeRightsNotification() -
onLostDataHelperRightsNotification
void onLostDataHelperRightsNotification() -
onNewBroadcastMessageReceived
-
onBOStopCountDown
void onBOStopCountDown(int seconds) When BOOption.countdown_seconds != BO_STOP_NOT_COUNTDOWN, host stop BO and all users receive the event.- Parameters:
seconds
- the countdown seconds
-
onHostInviteReturnToMainSession
When you are in BO, host invite you return to main session, you will receive the event- Parameters:
name
- the host namehandler
- handler to return to main session
-
onBOStatusChanged
When host change the BO status, all users receive the event- Parameters:
status
- current status of BO
-
onBOSwitchRequestReceived
Whenever the host switches you to another BO while you are assigned but haven't joined the BO, you will receive this event.- Parameters:
strNewBOName
- The new BO name.strNewBOID
- The new BO ID. If the current user isIBOAttendee
, then the 2nd parameter strNewBOID will return null.
-
onBroadcastBOVoiceStatus
void onBroadcastBOVoiceStatus(boolean start) The status of broadcasting voice to bo has been changed.- Parameters:
start
- true for start and false for stop.
-
onBOOptionChanged
You will receive the event when the option changes.- Parameters:
newOption
- The new bo option.
-