MCPcopy
hub / github.com/careercup/ctci / dispatchCall

Method dispatchCall

java/Chapter 8/Question8_2/CallHandler.java:76–79  ·  view source on GitHub ↗
(Caller caller)

Source from the content-addressed store, hash-verified

74
75 /* Routes the call to an available employee, or saves in a queue if no employee available. */
76 public void dispatchCall(Caller caller) {
77 Call call = new Call(caller);
78 dispatchCall(call);
79 }
80
81 /* Routes the call to an available employee, or saves in a queue if no employee available. */
82 public void dispatchCall(Call call) {

Callers 1

escalateAndReassignMethod · 0.80

Calls 8

getHandlerForCallMethod · 0.95
receiveCallMethod · 0.95
setHandlerMethod · 0.80
replyMethod · 0.80
addMethod · 0.45
getMethod · 0.45
getValueMethod · 0.45
getRankMethod · 0.45

Tested by

no test coverage detected