예제 #1
0
        public Task Handle(ShopCommentAddedEvent message)
        {
            if (message == null)
            {
                throw new ArgumentNullException(nameof(message));
            }

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

            notifier.Clients.All.shopCommentAdded(_responseBuilder.GetShopCommentAddedEvent(message));
            return(Task.FromResult(0));
        }