Ejemplo n.º 1
0
 private void TellSubscribers(object sender, string category)
 {
     foreach (var client in _subscribers.Where(c => c.Category == category))
     {
         if (DueforNotification(category, client))
         {
             client.LastNotified = DateTime.UtcNow;
             _notificationAdapter.Notify(client, "new_message");
         }
     }
 }