接口 NaturalIdStatistics
-
- 所有超级接口:
CacheableDataStatistics,Serializable
- 所有已知实现类:
NaturalIdStatisticsImpl
public interface NaturalIdStatistics extends CacheableDataStatistics, Serializable
Statistics pertaining to the execution of the "natural id resolution" query.- 作者:
- Eric Dalquist, Steve Ebersole
-
-
字段概要
-
从接口继承的字段 org.hibernate.stat.CacheableDataStatistics
NOT_CACHED_COUNT
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 longgetExecutionAvgTime()The average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylonggetExecutionCount()Number of times (since last Statistics clearing) the "natural id resolution" query has been executedlonggetExecutionMaxTime()The maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylonggetExecutionMinTime()The minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query-
从接口继承的方法 org.hibernate.stat.CacheableDataStatistics
getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName
-
-
-
-
方法详细资料
-
getExecutionCount
long getExecutionCount()
Number of times (since last Statistics clearing) the "natural id resolution" query has been executed
-
getExecutionAvgTime
long getExecutionAvgTime()
The average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
getExecutionMaxTime
long getExecutionMaxTime()
The maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
getExecutionMinTime
long getExecutionMinTime()
The minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
-