Package com.avaje.ebean.meta

Examples of com.avaje.ebean.meta.MetaObjectGraphNodeStats


  public List<MetaObjectGraphNodeStats> collectNodeStatistics(boolean reset) {

    List<MetaObjectGraphNodeStats> list = new ArrayList<MetaObjectGraphNodeStats>();

    for (CObjectGraphNodeStatistics nodeStatistics : server.objectGraphStats.values()) {
      MetaObjectGraphNodeStats nodeStats = nodeStatistics.get(reset);
      if (nodeStats.getCount() > 0) {
        // Only collection non-empty statistics
        list.add(nodeStats);
      }
    }
    return list;
View Full Code Here

TOP

Related Classes of com.avaje.ebean.meta.MetaObjectGraphNodeStats

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.