Ejemplo n.º 1
0
        private async Task OnCallQueueReceived(CallQueueItem cqi)
        {
            _logger.LogInformation($"{Name}: Call Queue Received with a number of {cqi.Call.Number}, starting processing...");
            await BroadcastCallLogic.ProcessCallQueueItem(cqi);

            _logger.LogInformation($"{Name}: Finished processing of call {cqi.Call.Number}.");
        }
Ejemplo n.º 2
0
        public CallBroadcastCommand()
        {
            _broadcastCallLogic = new BroadcastCallLogic();

            Continue = true;
        }