Files
ebean/ebean-api/src/main/java/io/ebean/metric/QueryPlanMetric.java
T
Rob Bygrave e7dd5570a5 Remove deprecated methods in ebean-api - meta, metric, plugin. Migrate getFoo() -> foo()
These methods are deprecated getters, migrate to the associated accessor method.
2022-04-06 18:32:52 +12:00

20 lines
308 B
Java

package io.ebean.metric;
import io.ebean.meta.MetricVisitor;
/**
* Internal Query plan metric holder.
*/
public interface QueryPlanMetric {
/**
* Return the underlying timed metric.
*/
TimedMetric metric();
/**
* Visit the underlying metric.
*/
void visit(MetricVisitor visitor);
}