-
@RestrictTo(value = RestrictTo.Scope.LIBRARY) public interface IFcmMessageHandler
interface to handle the Firebase notification service receiver callbacks
-
-
Method Summary
Modifier and Type Method Description abstract booleancreateNotification(Context applicationContext, RemoteMessage message)Creates notification from Firebase Remote message abstract booleanonNewToken(Context applicationContext, String token)Processes new token from Firebase -
-
Method Detail
-
createNotification
abstract boolean createNotification(Context applicationContext, RemoteMessage message)
Creates notification from Firebase Remote message
- Parameters:
applicationContext- - application contextmessage- - Firebase Remote message
-
onNewToken
abstract boolean onNewToken(Context applicationContext, String token)
Processes new token from Firebase
- Parameters:
applicationContext- - application contexttoken- - fcm token received from Firebase SDK
-
-
-
-