mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
24 lines
338 B
Java
24 lines
338 B
Java
package io.ebean.meta;
|
|
|
|
/**
|
|
* Query execution metrics.
|
|
*/
|
|
public interface MetaQueryMetric extends MetaTimedMetric {
|
|
|
|
/**
|
|
* The type of entity or DTO bean.
|
|
*/
|
|
Class<?> getType();
|
|
|
|
/**
|
|
* The label for the query (can be null).
|
|
*/
|
|
String getLabel();
|
|
|
|
/**
|
|
* The actual SQL of the query.
|
|
*/
|
|
String getSql();
|
|
|
|
}
|