io.ebeaninternal.server.profile.TimedProfileLocation 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.server.profile;
import io.ebean.ProfileLocation;
import io.ebean.meta.MetricVisitor;
import io.ebeaninternal.metric.TimedMetric;
/**
* ProfileLocation that collects timing metrics.
*/
public interface TimedProfileLocation extends ProfileLocation {
/**
* Return the label.
*/
String getLabel();
/**
* Return the metric.
*/
TimedMetric getMetric();
/**
* Visit the non empty metrics.
*/
void visit(MetricVisitor visitor);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy