Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
us.zoom.sdk.INotificationServiceEvent Interface Reference

Public Member Functions

void onMeetingDeviceListChanged (List< InMeetingDeviceInfo > deviceInfoList)
 Callback event that the device for users to attend the meeting has changed.
 
void onTransferMeetingStatus (boolean success)
 Transfer meeting status changed callback.
 
void onTransferMeetingResult (ITransferMeetingHandler handler)
 Transfer meeting status changed or join companion mode meeting callback.
 
void onReceiveOfflineNotificationPubKey (String pubKey, String spsn)
 Callback when web push public key is queried successfully. This method is called when the web push public key query operation completes. The public key is used for encrypting web push notifications to ensure secure communication.
 
void onRegisterOfflineNotification (boolean ret)
 Callback when offline notification registration completes. This method is called after attempting to register the device for offline notifications. It indicates whether the registration was successful or not.
 
void onUnRegisterOfflineNotification (boolean ret)
 Callback when offline notification unregistration completes. This method is called after attempting to unregister the device from offline notifications. It indicates whether the unregistration was successful or not.
 

Detailed Description

Definition at line 5 of file INotificationServiceEvent.java.

Member Function Documentation

◆ onMeetingDeviceListChanged()

void us.zoom.sdk.INotificationServiceEvent.onMeetingDeviceListChanged ( List< InMeetingDeviceInfo > deviceInfoList)

Callback event that the device for users to attend the meeting has changed.

f the user USES ZoomSDK#registerNotificationService(String) interface to connect to the service,they can't get webinar meeting list in this callback.

Parameters
deviceInfoListA list of meeting info with active meetings.

◆ onReceiveOfflineNotificationPubKey()

void us.zoom.sdk.INotificationServiceEvent.onReceiveOfflineNotificationPubKey ( String pubKey,
String spsn )

Callback when web push public key is queried successfully. This method is called when the web push public key query operation completes. The public key is used for encrypting web push notifications to ensure secure communication.

Parameters
pubKeyThe public key string used for web push notification encryption
spsnThe service provider security number (SPSN) used for public key rotation

◆ onRegisterOfflineNotification()

void us.zoom.sdk.INotificationServiceEvent.onRegisterOfflineNotification ( boolean ret)

Callback when offline notification registration completes. This method is called after attempting to register the device for offline notifications. It indicates whether the registration was successful or not.

Parameters
rettrue if registration was successful, false otherwise

◆ onTransferMeetingResult()

void us.zoom.sdk.INotificationServiceEvent.onTransferMeetingResult ( ITransferMeetingHandler handler)

Transfer meeting status changed or join companion mode meeting callback.

Parameters
handlerHandler object.

◆ onTransferMeetingStatus()

void us.zoom.sdk.INotificationServiceEvent.onTransferMeetingStatus ( boolean success)

Transfer meeting status changed callback.

Parameters
successThe result of transfer meeting
Deprecated
replace with onTransferMeetingResult(ITransferMeetingHandler)

◆ onUnRegisterOfflineNotification()

void us.zoom.sdk.INotificationServiceEvent.onUnRegisterOfflineNotification ( boolean ret)

Callback when offline notification unregistration completes. This method is called after attempting to unregister the device from offline notifications. It indicates whether the unregistration was successful or not.

Parameters
rettrue if unregistration was successful, false otherwise