Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
IBOAdmin.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3public interface IBOAdmin {
8 boolean startBO();
9
14 boolean stopBO();
15
20 boolean canStartBO();
21
28 boolean assignNewUserToRunningBO(String strUserID, String strBOID);
29
36 boolean switchAssignedUserToRunningBO(String strUserID, String strBOID);
37
43
49 boolean joinBOByUserRequest(String strUserID);
50
56 boolean broadcastMessage(String strMsg);
57
63 boolean ignoreUserHelpRequest(String userId);
64
71 boolean inviteBOUserReturnToMainSession(String userId);
72}
boolean joinBOByUserRequest(String strUserID)
User request to join breakout room.
boolean inviteBOUserReturnToMainSession(String userId)
Host invite user return to main session when BO is started and user is in BO.
boolean startBO()
Start breakout meeting. IBOAdminEvent.onStartBOResponse is the corresponding callback notification.
void setEvent(IBOAdminEvent event)
Set event.
boolean ignoreUserHelpRequest(String userId)
Notify attendee request help result.
boolean stopBO()
Stop breakout meeting. IBOAdminEvent.onStartBOResponse is the corresponding callback notification.
boolean canStartBO()
Determine if the user can start breakout room.
boolean switchAssignedUserToRunningBO(String strUserID, String strBOID)
Switch Assigned user to different Breakout meeting(BO-A to BO-B).
boolean assignNewUserToRunningBO(String strUserID, String strBOID)
Assign user to is runing breakout meeting.
boolean broadcastMessage(String strMsg)
Broadcast message.