-
public interface SendBirdPushHelper.OnPushRequestCompleteListener
SendBird push token registration event callback.
-
-
Method Summary
Modifier and Type Method Description abstract void
onComplete(boolean isRegistered, String token)
A callback for when a sendbird push token registered at server.It means the application can receive sendbird push notification from FCM/HMS. abstract void
onError(SendBirdException e)
A callback for when a sendbird push token registration was failed. -
-
Method Detail
-
onComplete
abstract void onComplete(boolean isRegistered, String token)
A callback for when a sendbird push token registered at server.It means the application can receive sendbird push notification from FCM/HMS.but it doesn't mean can't receive push message from the other push
- Parameters:
isRegistered
- it is status whether push token is registered.token
- requested push token
-
onError
abstract void onError(SendBirdException e)
A callback for when a sendbird push token registration was failed.
- Parameters:
e
- failed message
-
-
-
-