Package org.hibernate.stat
Interface SessionStatistics
-
public interface SessionStatisticsInformation about the first-level (session) cache for a particular session instance
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCollectionCount()Get the number of collection instances associated with the sessionjava.util.SetgetCollectionKeys()Get the set of all CollectionKeysintgetEntityCount()Get the number of entity instances associated with the sessionjava.util.SetgetEntityKeys()Get the set of all EntityKeys
-
-
-
Method Detail
-
getEntityCount
int getEntityCount()
Get the number of entity instances associated with the session
-
getCollectionCount
int getCollectionCount()
Get the number of collection instances associated with the session
-
getEntityKeys
java.util.Set getEntityKeys()
Get the set of all EntityKeys- See Also:
EntityKey
-
getCollectionKeys
java.util.Set getCollectionKeys()
Get the set of all CollectionKeys- See Also:
CollectionKey
-
-