|
iOS SDK API Reference
|
#import <MobileRTCBORole.h>
Inherits NSObject.
Instance Methods | |
| (NSString *_Nullable) | - createBO: |
| create a bo meeting. | |
| (BOOL) | - createGroupBO: |
| create bo meetings in batches. | |
| (BOOL) | - updateBO:name: |
| update bo meeting name with bo id. | |
| (BOOL) | - removeBO: |
| remove a bo meeting. | |
| (BOOL) | - assignUser:toBO: |
| assign a user to a bo meeting. | |
| (BOOL) | - removeUser:fromBO: |
| remove a user from a bo meeting. | |
| (BOOL) | - setBOOption: |
| Set BO option. | |
| (MobileRTCBOOption *_Nullable) | - getBOOption |
| Get BO option. | |
//////////////////////////// Creator ////////////////////////////
//////////////////////////// Admin ////////////////////////////
Main Functions: 1) after BO is started, assign new user to BO, 2) after BO is started, switch user from BO-A to BO-B 3) stop BO 4) start BO
//////////////////////////// Assistant ////////////////////////////
//////////////////////////// Attendee ////////////////////////////
Main Functions: 1) join BO 2) leave BO 3) request help
//////////////////////////// DataHelper ////////////////////////////
host in master conference : creator + admin + assistant + dataHelper host in BO conference : admin + assistant + dataHelper CoHost in master conference : [attendee] or [creator + admin + assistant + dataHelper] CoHost in BO conference : [attendee] or [admin + assistant + dataHelper] attendee in master conference : attendee + [assistant + dataHelper] attendee in BO conference : attendee + [assistant + dataHelper]
Import Remarks:
Definition at line 152 of file MobileRTCBORole.h.
| - (BOOL) assignUser: | (NSString *_Nonnull) | boUserId | |
| toBO: | (NSString *_Nonnull) | boId | |
assign a user to a bo meeting.
| boUserId | the BO user id. |
| boId | the BO id. |
| - (NSString *_Nullable) createBO: | (NSString *_Nonnull) | boName |
create a bo meeting.
| boName | the BO name. |
| - (BOOL) createGroupBO: | (NSArray< NSString * > *_Nonnull) | boNameList |
create bo meetings in batches.
| boNameList | the BO name list. |
| - (MobileRTCBOOption *_Nullable) getBOOption |
Get BO option.
| - (BOOL) removeBO: | (NSString *_Nonnull) | boId |
remove a bo meeting.
| boId | the BO id. |
| - (BOOL) removeUser: | (NSString *_Nonnull) | boUserId | |
| fromBO: | (NSString *_Nonnull) | boId | |
remove a user from a bo meeting.
| - (BOOL) setBOOption: | (MobileRTCBOOption *_Nonnull) | option |
Set BO option.
| option,the | option that you want to set. |
| - (BOOL) updateBO: | (NSString *_Nonnull) | boId | |
| name: | (NSString *_Nonnull) | boName | |
update bo meeting name with bo id.
| boId | the BO id. |
| boName | the BO name. |