1 23 24 package javax.management.j2ee.statistics; 25 26 29 public interface JDBCConnectionPoolStats extends JDBCConnectionStats { 30 33 CountStatistic getCreateCount(); 34 35 38 CountStatistic getCloseCount(); 39 40 43 BoundedRangeStatistic getPoolSize(); 44 45 48 BoundedRangeStatistic getFreePoolSize(); 49 50 53 RangeStatistic getWaitingThreadCount(); 54 } 55 | Popular Tags |