Package 

Interface IPushAmpHandler


  • 
    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 void processPushAmp(Context context, @NonNull() T message) Processes notification message for Pull Notifications
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • processPushAmp

         abstract void processPushAmp(Context context, @NonNull() T message)

        Processes notification message for Pull Notifications

        Parameters:
        context - application context
        message - notification message received from cloud messaging provider like firebase.