io.ebeaninternal.metric.QueryPlanCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.metric;
import io.ebean.meta.MetaQueryMetric;
import java.util.List;
/**
* Object used to collect query plan metrics.
*/
public interface QueryPlanCollector {
/**
* Return true if the statistics should be reset.
*/
boolean isReset();
/**
* Add the query plan statistic.
*/
void add(MetaQueryMetric stats);
/**
* Return all the collected query plan statistics.
*/
List complete();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy