mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
14 lines
195 B
Java
14 lines
195 B
Java
package io.ebean.meta;
|
|
|
|
/**
|
|
* Count metrics. For example L2 cache hits.
|
|
*/
|
|
public interface MetaCountMetric extends MetaMetric {
|
|
|
|
/**
|
|
* Return the total count.
|
|
*/
|
|
long getCount();
|
|
|
|
}
|