com.backendless.push.PushReceiverCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
Android SDK used by developers to provide Backendless API in apps.
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 - 2025 Weber Informatics LLC | Privacy Policy