Package com.taobao.top.analysis.statistics.reduce

Examples of com.taobao.top.analysis.statistics.reduce.IReducer


    }

    if (start.getAttributeByName(new QName("", "reduceClass")) != null) {
      String className = start.getAttributeByName(
          new QName("", "reduceClass")).getValue();
      IReducer reducer = ReportUtil.getInstance(IReducer.class,
          Thread.currentThread().getContextClassLoader(),className,
          true);
      assert reducer != null;
      entry.setReduceClass(reducer);
    }else{
View Full Code Here

TOP

Related Classes of com.taobao.top.analysis.statistics.reduce.IReducer

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.