class %Net.PushNotifications.GCM
extends %RegisteredObject
// Implements Google Cloud Messaging Service connectivity
parameter SERVICETYPE = "GCM";
property PushServer
as %String(MAXLEN=2048) [ InitialExpression = "https://android.googleapis.com/gcm/send",Required ];
URL for the Google Cloud Messaging REST interface.
property SSLConfig
as %String [ Required ];
Configuration name in the table of SSL configurations.
property Timeout
as %Integer [ InitialExpression = 30,Required ];
REST response timeout period in seconds.
method Connect()
as %Status
method Disconnect()
as %Status
method HTTPPushNotification(pAppIdentifier As %String, ByRef pNotification, ByRef pReply)
as %Status