IODPPushNotificationListener interface

Implement the GCM push notification listener.

Syntax

public interface IODPPushNotificationListener

Remarks

This method should be implemented by the application to get GCM push notification. Additionally, the implemented class needs to register this listener using: ODPClientConnection.getInstance().addGCMListener(IODPPushNotificationListener);

Example 1

              
public class ApplicationPage implements IODPPushNotificationListener{
    public int onGCMNotification( Hashtable hashValues ){}
}