Package metrics4Asterisk.parse

Examples of metrics4Asterisk.parse.AgentInQueuePerformanceMapper


    }
   
    public void parseForAgenInQueuetPerformance(InputStream ip, String queueName, Set<String> agentNames) {
        //TODO hook this into the one queue mapper
        LogParser<LogMapper<AgentMetric>> agentParser = new LogParser<LogMapper<AgentMetric>>();
        AgentInQueuePerformanceMapper agentPerformanceMapper = new AgentInQueuePerformanceMapper(agentNames, queueName);
       
        agentParser.setLogMapper(agentPerformanceMapper);
       
        BufferedReader in;
        CsvReader reader;
View Full Code Here

TOP

Related Classes of metrics4Asterisk.parse.AgentInQueuePerformanceMapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.