-
public interface UnregistrationListenerUnregistrationListener interface defines a set of callbacks for events related to Voice's unregister request.
-
-
Method Summary
Modifier and Type Method Description abstract voidonUnregistered(String accessToken, String fcmToken)Reports a successful GCM or FCM token unregistration. abstract voidonError(RegistrationException registrationException, String accessToken, String fcmToken)Reports an error related to GCM or FCM token unregistration. -
-
Method Detail
-
onUnregistered
abstract void onUnregistered(String accessToken, String fcmToken)
Reports a successful GCM or FCM token unregistration.
-
onError
abstract void onError(RegistrationException registrationException, String accessToken, String fcmToken)
Reports an error related to GCM or FCM token unregistration.
-
-
-
-