Package com.sinch.android.rtc
Interface PushTokenUnregistrationCallback
-
- All Implemented Interfaces:
public interface PushTokenUnregistrationCallbackCallback for push token unregistration events.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonPushTokenUnregistered()Informs that the push token has been successfully unregistered on backend and the application will not receive incoming calls via push notifications anymore. abstract UnitonPushTokenUnregistrationFailed(SinchError error)Informs that the push token unregistration failed -
-
Method Detail
-
onPushTokenUnregistered
abstract Unit onPushTokenUnregistered()
Informs that the push token has been successfully unregistered on backend and the application will not receive incoming calls via push notifications anymore.
-
onPushTokenUnregistrationFailed
abstract Unit onPushTokenUnregistrationFailed(SinchError error)
Informs that the push token unregistration failed
- Parameters:
error- SinchError Object that describes the problem.
-
-
-
-