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 TypeMethodDescriptionvoidonBOOptionChanged(BOOption newOption) You will receive the event when the option changes.voidonBOStatusChanged(BOStatus status) When host change the BO status, all users receive the eventvoidonBOStopCountDown(int seconds) When BOOption.countdown_seconds != BO_STOP_NOT_COUNTDOWN, host stop BO and all users receive the event.voidonBOSwitchRequestReceived(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.voidonBroadcastBOVoiceStatus(boolean start) The status of broadcasting voice to bo has been changed.voidonHasAdminRightsNotification(IBOAdmin iboAdmin) voidonHasAssistantRightsNotification(IBOAssistant iboAssistant) voidonHasAttendeeRightsNotification(IBOAttendee iboAttendee) voidonHasCreatorRightsNotification(IBOCreator creator) voidonHasDataHelperRightsNotification(IBOData iboData) voidonHostInviteReturnToMainSession(String name, ReturnToMainSessionHandler handler) When you are in BO, host invite you return to main session, you will receive the eventvoidvoidvoidvoidvoidvoidonNewBroadcastMessageReceived(String message, long senderId, String senderName) voidonShareFromMainSession(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.
-