FuncList | DESC |
Callback for conference scheduled. | |
Callback for conference will start. | |
Callback for conference cancellation. | |
Callback for conference information change. | |
Callback for attendees change in the conference. | |
Callback for conference status change. | |
Add event callback. | |
Remove event callback. | |
Schedule a conference. | |
Cancel a scheduled conference. | |
Update scheduled conference information. | |
Fetch a list of scheduled conference. | |
Fetch a list of attendees invited to the scheduled conference. | |
Add attendees to the attendee list. | |
Remove attendees from the attendee list. |
FuncList | DESC |
Conference information |
EnumType | DESC |
Conference status. | |
Conference cancel reason. | |
Scheduled conference information modify flag. |
void onConferenceScheduled |
Param | DESC |
conferenceInfo | Conference information. |
void onConferenceWillStart |
Param | DESC |
conferenceInfo | Conference information. |
void onConferenceCancelled | (String roomId |
| |
|
Param | DESC |
operateUser | Information about the operator who cancelled the conference. |
reason | The reason for the cancellation of the conference. |
roomId | Conference ID, which is the room ID. |
void onConferenceInfoChanged | |
|
Param | DESC |
conferenceInfo | Conference information. |
modifyFlag | Flag for conference information change. |
void onScheduleAttendeesChanged | (String roomId |
| |
|
Param | DESC |
joinedUsers | The list of attendees who have joined. |
leftUsers | The list of attendees who have left. |
roomId | Conference ID, which is the room ID. |
void onConferenceStatusChanged | (String roomId |
|
Param | DESC |
roomId | Conference ID, which is the room ID. |
status |
void addObserver | (Observer observer) |
Param | DESC |
observer | The instance being listened to. |
void removeObserver | (Observer observer) |
Param | DESC |
observer | The instance being listened to. |
void scheduleConference | |
| TUIRoomDefine.ActionCallback callback) |
Param | DESC |
conferenceInfo | Information for conference. |
void cancelConference | (String roomId |
| TUIRoomDefine.ActionCallback callback) |
Param | DESC |
roomId | The conference ID, which is the room ID, to cancel the conference. |
void updateConferenceInfo | |
| |
| TUIRoomDefine.ActionCallback callback) |
Param | DESC |
conferenceInfo | Information of scheduled conference. |
modifyFlag | The flag used to update conference information. |
void fetchScheduledConferenceList | |
| String cursor |
| int count |
| FetchScheduledConferenceListCallback callback) |
Param | DESC |
count | The number of conference to fetch this time. |
cursor | Pagination index retrieval. For the first fetch, use an empty string. If the callback returns data with a non-empty cursor, it indicates that pagination is needed. Please call the interface again using the returned cursor as the parameter until the cursor returned is empty, indicating that all data has been fetched. |
status | Conference status. |
void fetchAttendeeList | (String roomId |
| String cursor |
| int count |
| FetchScheduledAttendeesCallback callback) |
Param | DESC |
count | The number of attendee to fetch this time. |
cursor | Pagination index retrieval. For the first fetch, use an empty string. If the callback returns data with a non-empty cursor, it indicates that pagination is needed. Please call the interface again using the returned cursor as the parameter until the cursor returned is empty, indicating that all data has been fetched. |
roomId | The conference ID, which is the room ID. |
void addAttendeesByAdmin | (String roomId |
| List<String> userIdList |
| TUIRoomDefine.ActionCallback callback) |
Param | DESC |
roomId | The conference ID, which is the room ID. |
userIdList | List of attendee IDs. |
void removeAttendeesByAdmin | (String roomId |
| List<String> userIdList |
| TUIRoomDefine.ActionCallback callback) |
Param | DESC |
roomId | The conference ID, which is the room ID. |
userIdList | List of attendee IDs. |
Enum | Value | DESC |
NONE | 0 | None status. |
NOT_STARTED | 1 | Not started status. |
RUNNING | 2 | Running status(When the current time - schedule start time < 1 minute, the meeting status changes from not started to running). |
Enum | Value | DESC |
CANCELLED_BY_ADMIN | 0 | The conference has been cancelled by the admin. |
REMOVED_FROM_ATTENDEES | 1 | The current user is removed from the attendee list. |
Enum | Value | DESC |
NONE | 0x00 | None |
ROOM_NAME | 0x01 | Conference name |
SCHEDULE_START_TIME | 0x010000 | Scheduled start time. The default is the current time. |
SCHEDULE_END_TIME | 0x020000 | Scheduled end time.The default is one hour after the scheduled start time.The minimum duration of a conference cannot be less than 5 minutes and the maximum duration cannot exceed 24 hours. |
EnumType | DESC |
basicRoomInfo | Conference basic information . |
reminderSecondsBeforeStart | Reminder time before conference start (seconds). |
scheduleAttendees | The list of attendees can be set when schedule a conference. Use the fetchAttendeeList interface if you need to fetch attendees. |
scheduleEndTime | Conference schedule end time. |
scheduleStartTime | Conference schedule start time. |
status | Conference status (readonly). |
Was this page helpful?