...
Блок кода |
---|
|
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
|
OnPushMessage
Событие контроллера Events.js. Срабатывает при получении сообщения, параметр sender содержит Guid отправителя, пример:
Блок кода |
---|
function OnPushMessage(sender,message)
{
LocalNotification.Notify(sender + ": " + message);
} |