package io.ebeaninternal.server.profile;

import io.ebean.ProfileLocation;
import io.ebean.meta.MetricVisitor;
import io.ebean.metric.TimedMetric;

ProfileLocation that collects timing metrics.
/** * ProfileLocation that collects timing metrics. */
public interface TimedProfileLocation extends ProfileLocation {
Return the label.
/** * Return the label. */
String getLabel();
Return the metric.
/** * Return the metric. */
TimedMetric getMetric();
Visit the non empty metrics.
/** * Visit the non empty metrics. */
void visit(MetricVisitor visitor); }