public int SetGetAllowPushNotificationCallback(Push.GetAllowPushNotificationDelegate callback) { if (null == callback) { return(0); } int handlerNum = CallbackManager.AddHandler(delegate(CallbackMessage message) { Log.Debug("[PushCallback] GetAllowPushNotificationCallback: " + message); Result result = message.GetResult(); int notice = message.GetInt("notice"); int game = message.GetInt("game"); int nightNotice = message.GetInt("nightNotice"); if (null != callback) { callback(result, (AllowPushNotification)notice, (AllowPushNotification)game, (AllowPushNotification)nightNotice); } }); return(handlerNum); }
public void GetAllowPushNotification(Push.GetAllowPushNotificationDelegate callback) { int handlerNum = pushCallback.SetGetAllowPushNotificationCallback(callback); pushAndroidClass.CallStatic("nmg_push_getAllowPushNotification", handlerNum); }
public void GetAllowPushNotification(Push.GetAllowPushNotificationDelegate callback) { int handlerNum = pushCallback.SetGetAllowPushNotificationCallback(callback); nmg_push_getAllowPushNotification(handlerNum); }
public void GetAllowPushNotification(Push.GetAllowPushNotificationDelegate callback) { }