javax.management.j2ee.statistics
Interface JDBCConnectionPoolStats

All Superinterfaces:
JDBCConnectionStats (src) , Stats (src)

public interface JDBCConnectionPoolStats
extends JDBCConnectionStats (src)

Specifies the statistics provided by a JDBC connection pool.


Method Summary
 CountStatistic (src) getCloseCount()
          Number of connections closed.
 CountStatistic (src) getCreateCount()
          Number of connections created.
 BoundedRangeStatistic (src) getFreePoolSize()
          Number of free connections in the pool.
 BoundedRangeStatistic (src) getPoolSize()
          Size of the connection pool.
 RangeStatistic (src) getWaitingThreadCount()
          Number of threads waiting for a connection.
 
Methods inherited from interface javax.management.j2ee.statistics.JDBCConnectionStats (src)
getJdbcDataSource, getUseTime, getWaitTime
 
Methods inherited from interface javax.management.j2ee.statistics.Stats (src)
getStatistic, getStatisticNames, getStatistics
 

Method Detail

getCreateCount

public CountStatistic (src)  getCreateCount()
Number of connections created.


getCloseCount

public CountStatistic (src)  getCloseCount()
Number of connections closed.


getPoolSize

public BoundedRangeStatistic (src)  getPoolSize()
Size of the connection pool.


getFreePoolSize

public BoundedRangeStatistic (src)  getFreePoolSize()
Number of free connections in the pool.


getWaitingThreadCount

public RangeStatistic (src)  getWaitingThreadCount()
Number of threads waiting for a connection.