Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCNotificationServiceHelper Class Reference

Helper for managing meeting transfer and presence features. More...

#include <MobileRTCNotificationServiceHelper.h>

Inherits NSObject.

Instance Methods

(BOOL) - isTransferMeetingEnabled
 Determine whether the transfer meeting feature is enabled.
 
(BOOL) - isPresenceFeatureEnabled
 Determine whether the presence feature is enabled.
 
(MobileRTCSDKError- transferMeeting:
 Try to transfer meeting to current device.
 
(MobileRTCSDKError- transferMeeting:mode:
 Try to transfer meeting to current device.
 
(MobileRTCPresenceHelper *_Nullable) - getPresenceHelper
 Get presence interface helper.
 

Properties

id< MobileRTCNotificationServiceHelperDelegate > _Nullable delegate
 Set the delegate of access token service.
 

Detailed Description

Helper for managing meeting transfer and presence features.

Definition at line 83 of file MobileRTCNotificationServiceHelper.h.

Method Documentation

◆ getPresenceHelper

- (MobileRTCPresenceHelper *_Nullable) getPresenceHelper

Get presence interface helper.

Returns
If the function succeeds, the return value is a instance of MobileRTCPresenceHelper, Otherwise, the function returns NULL.

◆ isPresenceFeatureEnabled

- (BOOL) isPresenceFeatureEnabled

Determine whether the presence feature is enabled.

◆ isTransferMeetingEnabled

- (BOOL) isTransferMeetingEnabled

Determine whether the transfer meeting feature is enabled.

◆ transferMeeting:

- (MobileRTCSDKError) transferMeeting: (NSInteger) index

Try to transfer meeting to current device.

Parameters
indexSpecifies the index, see [MobileRTCInMeetingDeviceInfo].
Returns
If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError] enum.
Deprecated
Please use -[MobileRTCNotificationServiceHelper transferMeeting:mode:] instead.

◆ transferMeeting:mode:

- (MobileRTCSDKError) transferMeeting: (NSString *_Nullable) meetingId
mode: (MobileRTCTransferMeetingMode) mode 

Try to transfer meeting to current device.

Parameters
meetingIdSpecifies the index, see [MobileRTCInMeetingDeviceInfo].
Returns
If the function succeeds, the return value is MobileRTCSDKError_Success. Otherwise failed. To get extended error information, see [MobileRTCSDKError] enum.

Property Documentation

◆ delegate

- (id<MobileRTCNotificationServiceHelperDelegate> _Nullable) delegate
readwritenonatomicassign

Set the delegate of access token service.

Definition at line 87 of file MobileRTCNotificationServiceHelper.h.