Package org.apache.uima.ducc.common.jd.files

Examples of org.apache.uima.ducc.common.jd.files.IJobPerformanceSummary


    map.putCasCount(casCount);
    ConcurrentSkipListMap<String, JobPerformanceSummary> gzMap = data.getMap();
    Set<Entry<String, JobPerformanceSummary>> entries = gzMap.entrySet();
    for(Entry<String, JobPerformanceSummary> entry : entries) {
      String key = entry.getKey();
      IJobPerformanceSummary jps = entry.getValue();
      PerformanceMetricsSummaryItem value = new PerformanceMetricsSummaryItem(jps.getName(),jps.getUniqueName(),jps.getAnalysisTime(),jps.getNumProcessed(),jps.getAnalysisTimeMin(),jps.getAnalysisTimeMax());
      map.putItem(key, value);
    }
    return map;
  }
View Full Code Here


    map.putCasCount(casCount);
    ConcurrentSkipListMap<String, JobPerformanceSummary> gzMap = data.getMap();
    Set<Entry<String, JobPerformanceSummary>> entries = gzMap.entrySet();
    for(Entry<String, JobPerformanceSummary> entry : entries) {
      String key = entry.getKey();
      IJobPerformanceSummary jps = entry.getValue();
      PerformanceMetricsSummaryItem value = new PerformanceMetricsSummaryItem(jps.getName(),jps.getUniqueName(),jps.getAnalysisTime(),jps.getNumProcessed(),jps.getAnalysisTimeMin(),jps.getAnalysisTimeMax());
      map.putItem(key, value);
    }
    return map;
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.ducc.common.jd.files.IJobPerformanceSummary

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.