Esempio n. 1
0
 public async Task NotifyAsync(uint[] ids, string func, SenderMessage payloda)
 {
     foreach (var item in ids)
     {
         await SendAsync(item, func, payloda);
     }
 }
Esempio n. 2
0
 public void Notify(uint[] ids, string func, SenderMessage payloda)
 {
     foreach (var item in ids)
     {
         Send(item, func, payloda);
     }
 }
Esempio n. 3
0
        public void Send(uint client, string func, SenderMessage data)
        {
            var cl = world.GetComponent <SessionComponent>(client);

            if (cl == null)
            {
                return;
            }
            cl.gameSession.Send(func, data);
        }
Esempio n. 4
0
        public async Task SendAsync(uint client, string func, SenderMessage data)
        {
            var cl = world.GetComponent <SessionComponent>(client);

            if (cl == null)
            {
                return;
            }
            await cl.gameSession.SendAsync(func, data);
        }
Esempio n. 5
0
        public static string Convert(string func, SenderMessage payloda)
        {
            SendData data = new SendData();

            data.func = func;
            data.data = payloda;
            string res = JsonConvert.SerializeObject(data);

            Return(data);
            return(res);
        }