Implements simple round robin dispatching of offers to agents.
Agents are offered requests one at a time with no agent being offer the same request twice (unless their current-chats status changes).
212213214215216217218219220
loadGroups(); // Load all Agents loadAgents(); dispatcher = new RoundRobinDispatcher(this); creationDate = new Date(); agentManager = workgroup.getAgentManager(); }