001package com.avaje.ebean.meta; 002 003import java.util.List; 004 005public interface MetaBeanInfo { 006 007 /** 008 * Collect the current query plan statistics return the non-empty statistics. 009 */ 010 List<MetaQueryPlanStatistic> collectQueryPlanStatistics(boolean reset); 011 012 /** 013 * Collect the current query plan statistics return all the statistics (include query plans that haven't had query executions). 014 */ 015 List<MetaQueryPlanStatistic> collectAllQueryPlanStatistics(boolean reset); 016 017}