Esempio n. 1
0
        public async Task NotifyAsync(IWebHookNotification notification, CancellationToken cancellationToken = default)
        {
            if (notification == null)
            {
                throw new ArgumentNullException(nameof(notification));
            }

            await _webHooksQueue.QueueWebHookAsync(notification);
        }