Package org.objectweb.medor.eval.lib

Examples of org.objectweb.medor.eval.lib.BasicEvaluationMetaData


    // Setting QueryLeaf's appropriated connection Object
    for (int cpt = 0; (cpt < leafs.length); cpt++) {
      connRess.setConnection(leafs[cpt], connection);
      if (evalMDMap != null) {
          //range values specified
            BasicEvaluationMetaData evalMD = new BasicEvaluationMetaData();
            evalMD.setLimitedRangeStartAt((int) userqd.getIndexFirst());
            evalMD.setLimitedRangeSize((int) (userqd.getIndexLast() - userqd.getIndexFirst()));
          evalMDMap.put(leafs[cpt], evalMD);
      }
    }
   
    PrefetchBuffer prefetchBuffer = null;
View Full Code Here

TOP

Related Classes of org.objectweb.medor.eval.lib.BasicEvaluationMetaData

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.