All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.backendless.push.PushReceiverCallback Maven / Gradle / Ivy

The newest version!
package com.backendless.push;

import android.content.Context;
import android.content.Intent;

/**
 * Added for backward compatibility.
 */
public interface PushReceiverCallback
{

  void onRegistered( Context context, String registrationId );

  void onUnregistered( Context context, Boolean unregistered );

  boolean onMessage( Context context, Intent intent );

  void onError( Context context, String message );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy