Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
IBOCreator.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.List;
4
8public interface IBOCreator {
9
15
23 @Deprecated
24 String createBO(String strBoName);
25
35 MobileRTCSDKError createGroupBO(List<String> boNameList);
36
44 boolean updateBOName(String boId, String newBoName);
45
52 boolean removeBO(String boId);
53
60 boolean assignUserToBO(String strUserID, String strBOId);
61
68 boolean removeUserFromBO(String strUserID, String strBOId);
69
76 boolean setBOOption(BOOption option);
77
84
91
98
105
111 boolean createWebinarBo(List<String> boNameList);
112
122 boolean createBreakoutRoom(String strBOName);
123}
Enumeration of common errors of SDK.
Enumeration of the pre-assign breakout room data download status.
Event for breakout room creation related callbacks.
Interface for creating and managing breakout rooms.
String createBO(String strBoName)
Create a breakout room.
boolean isWebPreAssignBOEnabled()
Check whether web enabled the pre-assigned option when scheduling a meeting.
MobileRTCSDKError requestAndUseWebPreAssignBOList()
Request web pre-assigned data and create those rooms.
boolean updateBOName(String boId, String newBoName)
Update BO name, 'IBOCreatorEvent.onUpdateBONameResponse' is the corresponding callback notification.
boolean setBOOption(BOOption option)
Set BO option.
PreAssignBODataStatus getWebPreAssignBODataStatus()
Get the downloading status of pre-assigned data.
void setEvent(IBOCreatorEvent event)
Set event.
boolean removeUserFromBO(String strUserID, String strBOId)
Removed user from Breakout meeting.
boolean createWebinarBo(List< String > boNameList)
Creator webinar breakout meeting.
boolean createBreakoutRoom(String strBOName)
Create a breakout room. Note:
MobileRTCSDKError createGroupBO(List< String > boNameList)
Batch create BO rooms. If the function succeeds, all the created BO rooms will be removed....
BOOption getBOOption()
Get BO option.
boolean removeBO(String boId)
Remove a breakout room,IBOCreatorEvent#onRemoveBOResponse(boolean, String) is the corresponding callb...
boolean assignUserToBO(String strUserID, String strBOId)
Assign user to Breakout meeting.