A class to manage contact presence and meeting invitations.
More...
#include <MobileRTCPresenceHelper.h>
Inherits NSObject.
A class to manage contact presence and meeting invitations.
Definition at line 198 of file MobileRTCPresenceHelper.h.
◆ inviteContact:
Sends an invitation to a contact to join a meeting.
- Parameters
-
- Returns
- If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.
◆ inviteContactList:
| - (MobileRTCSDKError) inviteContactList: |
|
(NSArray< NSString * > *_Nonnull) | contactIDList |
|
Batch invites a list of specified contacts to the current meeting.
- Parameters
-
| contactIDList | A list which contains contact IDs of the specified users. |
- Returns
- If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.
◆ requestContactDetailInfo:
| - (MobileRTCSDKError) requestContactDetailInfo: |
|
(NSArray< NSString * > *_Nonnull) | contactIDList |
|
Sends a request for contact detail information according to the contact ID list.
- Parameters
-
| contactIDList | The contact ID list. |
- Returns
- If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.
◆ requestStarContact
Sends a request to get the starred contact IDs.
- Returns
- If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.
◆ starContact:
Sends a request to add the contact into a starred contact list.
- Parameters
-
- Returns
- If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.
◆ subscribeContactPresence:
| - (MobileRTCSDKError) subscribeContactPresence: |
|
(NSArray< NSString * > *_Nonnull) | contactIDList |
|
Sends a request to subscribe contact presence status according to the contact ID list.
- Parameters
-
| contactIDList | The contact ID list. |
- Returns
- If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.
◆ unStarContact:
Sends a request to remove a contact from the starred contact list.
- Parameters
-
- Returns
- If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.
◆ unSubscribeContactPresence:
| - (MobileRTCSDKError) unSubscribeContactPresence: |
|
(NSArray< NSString * > *_Nonnull) | contactIDList |
|
Sends a request to unsubscribe contact presence status according to the contact ID list.
- Parameters
-
| contactIDList | The contact ID list. |
- Returns
- If the function succeeds, it returns MobileRTCSDKError_Success. Otherwise, this function returns an error.
◆ delegate