站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.3 正式版 API 英文文档

StatisticsImplementor (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档


org.hibernate.stat
Interface StatisticsImplementor

All Known Implementing Classes:
StatisticsImpl

public interface StatisticsImplementor

Statistics SPI for the Hibernate core

Author:
Emmanuel Bernard

Method Summary
 void closeSession()
           
 void closeStatement()
           
 void connect()
           
 void deleteEntity(String entityName)
           
 void endTransaction(boolean success)
           
 void fetchCollection(String role)
           
 void fetchEntity(String entityName)
           
 void flush()
           
 void insertEntity(String entityName)
           
 void loadCollection(String role)
           
 void loadEntity(String entityName)
           
 void openSession()
           
 void optimisticFailure(String entityName)
           
 void prepareStatement()
           
 void queryCacheHit(String hql, String regionName)
           
 void queryCacheMiss(String hql, String regionName)
           
 void queryCachePut(String hql, String regionName)
           
 void queryExecuted(String hql, int rows, long time)
           
 void recreateCollection(String role)
           
 void removeCollection(String role)
           
 void secondLevelCacheHit(String regionName)
           
 void secondLevelCacheMiss(String regionName)
           
 void secondLevelCachePut(String regionName)
           
 void updateCollection(String role)
           
 void updateEntity(String entityName)
           
 

Method Detail

openSession

public void openSession()

closeSession

public void closeSession()

flush

public void flush()

connect

public void connect()

loadEntity

public void loadEntity(String entityName)

fetchEntity

public void fetchEntity(String entityName)

updateEntity

public void updateEntity(String entityName)

insertEntity

public void insertEntity(String entityName)

deleteEntity

public void deleteEntity(String entityName)

loadCollection

public void loadCollection(String role)

fetchCollection

public void fetchCollection(String role)

updateCollection

public void updateCollection(String role)

recreateCollection

public void recreateCollection(String role)

removeCollection

public void removeCollection(String role)

secondLevelCachePut

public void secondLevelCachePut(String regionName)

secondLevelCacheHit

public void secondLevelCacheHit(String regionName)

secondLevelCacheMiss

public void secondLevelCacheMiss(String regionName)

queryExecuted

public void queryExecuted(String hql,
                          int rows,
                          long time)

queryCacheHit

public void queryCacheHit(String hql,
                          String regionName)

queryCacheMiss

public void queryCacheMiss(String hql,
                           String regionName)

queryCachePut

public void queryCachePut(String hql,
                          String regionName)

endTransaction

public void endTransaction(boolean success)

closeStatement

public void closeStatement()

prepareStatement

public void prepareStatement()

optimisticFailure

public void optimisticFailure(String entityName)