Exemplo n.º 1
0
        public Task Handle(ServiceUpdatedEvent message)
        {
            if (message == null)
            {
                throw new ArgumentNullException(nameof(message));
            }

            var notifier = _connectionManager.GetHubContext <Notifier>();

            notifier.Clients.All.serviceUpdated(_responseBuilder.GetServiceUpdatedEvent(message));
            return(Task.FromResult(0));
        }