Package io.ebean.metric
Interface QueryPlanCollector
-
public interface QueryPlanCollector
Object used to collect query plan metrics.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(MetaQueryMetric stats)
Add the query plan statistic.List<MetaQueryMetric>
complete()
Return all the collected query plan statistics.boolean
isReset()
Return true if the statistics should be reset.
-
-
-
Method Detail
-
isReset
boolean isReset()
Return true if the statistics should be reset.
-
add
void add(MetaQueryMetric stats)
Add the query plan statistic.
-
complete
List<MetaQueryMetric> complete()
Return all the collected query plan statistics.
-
-