1 23 24 package javax.management.j2ee.statistics; 25 26 30 public interface JCAConnectionPoolStats extends JCAConnectionStats { 31 35 CountStatistic getCloseCount(); 36 37 41 CountStatistic getCreateCount(); 42 43 47 BoundedRangeStatistic getFreePoolSize(); 48 49 53 BoundedRangeStatistic getPoolSize(); 54 55 59 RangeStatistic getWaitingThreadCount(); 60 } 61 | Popular Tags |