Meeting SDK for macOS API Reference
Loading...
Searching...
No Matches
<ZoomSDKPresenceHelperDelegate> Protocol Reference

#include <ZoomSDKPresenceHelper.h>

Inherits <NSObjectNSObject>.

Instance Methods

(void) - onRequestStarContact:
 Callback to request star contact ID list.
 
(void) - onRequestContactDetailInfo:
 Callback to request the contact detail information list.
 
(void) - onContactPresenceChanged:presenceStatus:
 Contact presence changed callback.
 
(void) - onStarContactListChanged:isAdd:
 Starred contact list changed callback.
 
(void) - onReceiveInvitationToMeeting:
 Callback to receive a meeting invitation.
 
(void) - onMeetingInvitationCanceled:
 The meeting invitation is canceled by inviter callback.
 
(void) - onMeetingAcceptedByOtherDevice:
 Callback to accept the meeting invitation on another device.
 
(void) - onMeetingDeclinedByOtherDevice:
 Callback to decline the meeting invitation on another device.
 
(void) - onMeetingInvitationDeclined:
 Callback to decline the meeting invitation.
 

Detailed Description

Definition at line 111 of file ZoomSDKPresenceHelper.h.

Method Documentation

◆ onContactPresenceChanged:presenceStatus:

- (void) onContactPresenceChanged: (NSString *) contactID
presenceStatus: (ZoomSDKPresenceStatus) status 

Contact presence changed callback.

Parameters
contactIDThe contact’s ID.
statusContact presence status. For more details see ZoomSDKPresenceStatus.

◆ onMeetingAcceptedByOtherDevice:

- (void) onMeetingAcceptedByOtherDevice: (long long) meetingNumber

Callback to accept the meeting invitation on another device.

Parameters
meetingNumberAccept meeting number.

◆ onMeetingDeclinedByOtherDevice:

- (void) onMeetingDeclinedByOtherDevice: (long long) meetingNumber

Callback to decline the meeting invitation on another device.

Parameters
meetingNumbermeeting number that declined by other device.

◆ onMeetingInvitationCanceled:

- (void) onMeetingInvitationCanceled: (long long) meetingNumber

The meeting invitation is canceled by inviter callback.

Parameters
meetingNumberCancel meeting number.

◆ onMeetingInvitationDeclined:

- (void) onMeetingInvitationDeclined: (NSString *) contactID

Callback to decline the meeting invitation.

Parameters
contactIDThe IDs of contacts who decline the invitation.

◆ onReceiveInvitationToMeeting:

- (void) onReceiveInvitationToMeeting: (ZoomSDKInvitationMeetingHandler *) handler

Callback to receive a meeting invitation.

Parameters
handlerThe object of ZoomSDKInvitationMeetingHandler. For more details see ZoomSDKInvitationMeetingHandler.

◆ onRequestContactDetailInfo:

- (void) onRequestContactDetailInfo: (NSArray< ZoomSDKContactInfo * > *) contactList

Callback to request the contact detail information list.

Parameters
contactListContact detail information list. For more details see ZoomSDKContactInfo.

◆ onRequestStarContact:

- (void) onRequestStarContact: (NSArray< NSString * > *) contactIDList

Callback to request star contact ID list.

Parameters
contactIDListStar contact result value.

◆ onStarContactListChanged:isAdd:

- (void) onStarContactListChanged: (NSArray< NSString * > *) contactIDList
isAdd: (BOOL) add 

Starred contact list changed callback.

Parameters
contactIDListThe ID list of change contacts.
addSpecifies whether the contact list is added.