Beispiel #1
0
        public void Call(int clientId, bool isPriority = false)
        {
            IncommingCall call = new IncommingCall()
            {
                Id         = _count++,
                ClientId   = clientId,
                CallTime   = DateTime.Now,
                IsPriority = isPriority
            };

            Calls.Enqueue(call, isPriority ? 0 : 1);
        }
Beispiel #2
0
        public IncommingCall Answer(string consultant)
        {
            if (this.Calls.Count <= 0)
            {
                return(null);
            }
            IncommingCall call = Calls.Dequeue();

            call.Consultant = consultant;
            call.StartTime  = DateTime.Now;
            return(call);
        }
        static void Main(string[] args)
        {
            Random random = new Random();

            CallCenter center = new CallCenter();

            center.Call(1234);
            center.Call(5678, true);
            center.Call(1468);
            center.Call(9641, true);

            while (center.AreWaitingCalls())
            {
                IncommingCall call = center.Answer("Marcin");
                Log($"Call #{call.Id} from {call.ClientId} is answered by {call.Consultant} Mode: {(call.IsPriority ? "priority" : "normal")}.");
                Thread.Sleep(random.Next(1000, 10000));
                center.End(call);
                Log($"Call #{call.Id} from {call.ClientId} is ended by {call.Consultant}.");
            }
        }
Beispiel #4
0
 public void End(IncommingCall call)
 {
     call.EndTime = DateTime.Now;
 }