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); }
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}."); } }
public void End(IncommingCall call) { call.EndTime = DateTime.Now; }