Interface to manage contact presence and meeting invitations.
More...
#include <MobileRTCPresenceHelper.h>
Inherits NSObject.
Interface to manage contact presence and meeting invitations.
Definition at line 182 of file MobileRTCPresenceHelper.h.
◆ inviteContact:
Send an invitation to a contact to join a meeting.
- Parameters
-
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError].
◆ inviteContactList:
- (MobileRTCSDKError) inviteContactList: |
|
(NSArray< NSString * > *_Nonnull) | contactIDList |
|
Batch invite a list of specified contact to the current meeting.
- Parameters
-
contactIDList | A list which contains contactsID of the specified user. |
- Returns
- If the function succeeds, it will return MobileRTCSDKError_Success, otherwise not.
◆ requestContactDetailInfo:
- (MobileRTCSDKError) requestContactDetailInfo: |
|
(NSArray< NSString * > *_Nonnull) | contactIDList |
|
Send a request for contact detail information according to the contact id list.
- Parameters
-
contactIDList | The contact id list. |
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError].
◆ requestStarContact
Send a request to get the starred contact IDs.
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError].
◆ starContact:
Send a request to add the contact into a starred contact list.
- Parameters
-
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError].
◆ subscribeContactPresence:
- (MobileRTCSDKError) subscribeContactPresence: |
|
(NSArray< NSString * > *_Nonnull) | contactIDList |
|
Send a request to subscribe contact presence status according to the contact id list.
- Parameters
-
contactIDList | The contact id list. |
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError].
◆ unStarContact:
Send a request to remove a contact from the starred contact list.
- Parameters
-
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError].
◆ unSubscribeContactPresence:
- (MobileRTCSDKError) unSubscribeContactPresence: |
|
(NSArray< NSString * > *_Nonnull) | contactIDList |
|
Send a request to unsubscribe contact presence status according to the contact id list.
- Parameters
-
contactIDList | The contact id list. |
- Returns
- If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError].
◆ delegate