Examples of IJobPerformanceSummary


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

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
TOP
Copyright © 2018 www.massapi.com. 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.