mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
These methods are deprecated getters, migrate to the associated accessor method.
20 lines
308 B
Java
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);
|
|
}
|