public void Handle(ClientNotification notification)
 {
     //hub.Clients.All.messageRecieved(notification);
     hub.Clients.Client(notification.ClientId.ToString()).messageRecieved(notification);
 }
Beispiel #2
0
 public void Publish(ClientNotification clientNotification)
 {
     _bus.Publish(clientNotification);
 }