FuncList | DESC |
Receive invitation callback | |
Invitation has been handled on another device callback | |
Invitation has been cancelled callback | |
Invitation has been accepted callback | |
Invitation has been rejected callback | |
Invitation timeout callback | |
Invitation revoked by admin callback | |
Invitation has been added callback | |
Invitation has been removed callback | |
Invitation status change callback | |
Add event observer | |
Remove event observer | |
Invite users | |
Cancel invitation | |
Accept invitation | |
Reject invitation | |
Get invitation list |
FuncList | DESC |
Invitation information structure |
EnumType | DESC |
Invitation status | |
Invitation error code enumeration | |
Invitation rejected reason enumeration |
void onReceiveInvitation | |
| |
| String extensionInfo) |
Param | DESC |
extensionInfo | Extension information. |
invitation | Invitation information. |
roomInfo | Room information. |
void onInvitationHandledByOtherDevice | |
| boolean accepted) |
Param | DESC |
accepted | Whether the invitation has been accepted. |
roomInfo | Room information. |
void onInvitationCancelled | |
|
Param | DESC |
invitation | Invitation information. |
roomInfo | Room information. |
void onInvitationAccepted | |
|
Param | DESC |
invitation | Invitation information. |
roomInfo | Room information. |
void onInvitationRejected | |
| |
|
Param | DESC |
invitation | Invitation information. |
reason | Reason for rejection. |
roomInfo | Room information. |
void onInvitationTimeout | |
|
Param | DESC |
invitation | Invitation information. |
roomInfo | Room information. |
void onInvitationRevokedByAdmin | |
| |
|
Param | DESC |
admin | Admin information. |
invitation | Invitation information. |
roomInfo | Room information. |
void onInvitationAdded | (String roomId |
|
Param | DESC |
invitation | Invitation information. |
roomId | Room ID. |
void onInvitationRemoved | (String roomId |
|
Param | DESC |
invitation | Invitation information. |
roomId | Room ID. |
void onInvitationStatusChanged | (String roomId |
|
Param | DESC |
invitation | Invitation information. |
roomId | Room ID. |
void addObserver | (Observer observer) |
Param | DESC |
observer | Instance being observed to. |
void removeObserver | (Observer observer) |
Param | DESC |
observer | Instance being observed to. |
void inviteUsers | (String roomId |
| List<String> userIdList |
| int timeout |
| String extensionInfo |
| InviteUsersCallback callback) |
Param | DESC |
extensionInfo | Extension information. |
roomId | Room ID. |
timeout | Timeout duration. |
userIdList | List of user IDs. |
void cancelInvitation | (String roomId |
| List<String> userIdList |
| TUIRoomDefine.ActionCallback callback) |
Param | DESC |
roomId | Room ID. |
userIdList | List of user IDs. |
void accept | (String roomId |
| TUIRoomDefine.ActionCallback callback) |
Param | DESC |
roomId | Room ID. |
void reject | (String roomId |
| |
| TUIRoomDefine.ActionCallback callback) |
Param | DESC |
reason | Reason for rejection. |
roomId | Room ID. |
void getInvitationList | (String roomId |
| String cursor |
| int count |
| GetInvitationListCallback callback) |
Param | DESC |
count | The number of invitation to get 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 | Room ID. |
Enum | Value | DESC |
NONE | 0 | None status. |
PENDING | 1 | Pending status. |
TIMEOUT | 2 | Timeout status. |
ACCEPTED | 3 | Accepted status. |
REJECTED | 4 | Rejected status. |
Enum | Value | DESC |
SUCCESS | 0 | Invitation successful. |
ALREADY_IN_INVITATION_LIST | 1 | The current user is already in the invitation list. |
ALREADY_IN_CONFERENCE | 2 | The current user is already in the conference. |
Enum | Value | DESC |
REJECT_TO_ENTER | 0 | Reject to enter. |
IN_OTHER_CONFERENCE | 1 | In other conference. |
EnumType | DESC |
invitee | Information of the invitee. |
inviter | Information of the inviter. |
status | Invitation status. |
Was this page helpful?