...
Блок кода | ||||
---|---|---|---|---|
| ||||
var rst = new Query("SELECT Id FROM Catalog_User").Execute(); var arr = []; while(rst.Next()) { arr.push(ToString(rst.Id.Guid)); } PushNotification.SendMessage("Вася Пупкин", "hello there !", arr); PushNotification.SendMessage("hello there again !", arr); //User GUID в качестве sender |
Возвращаемое значение - True в случае успеха.
...
Блок кода |
---|
function OnPushMessage(sender,message) { LocalNotification.Notify(sender + ": " + message); } |