-
public interface IPushAmpHandler<T>Generic Interface to handle Pull Notifications for different types of notification messages, received from respective services or receivers(ex. FirebaseMessagingService). Implement this interface if you want to support push amp for different types of notification messages.
-
-
Method Summary
Modifier and Type Method Description abstract voidprocessPushAmp(Context context, @NonNull() T message)Processes notification message for Pull Notifications -
-
Method Detail
-
processPushAmp
abstract void processPushAmp(Context context, @NonNull() T message)
Processes notification message for Pull Notifications
- Parameters:
context- application contextmessage- notification message received from cloud messaging provider like firebase.
-
-
-
-