1 6 package org.logicalcobwebs.proxool; 7 8 import java.util.Date ; 9 10 23 public interface ConnectionPoolStatisticsIF { 24 25 29 long getConnectionsServedCount(); 30 31 37 long getConnectionsRefusedCount(); 38 39 43 int getActiveConnectionCount(); 44 45 50 int getAvailableConnectionCount(); 51 52 57 int getOfflineConnectionCount(); 58 59 63 Date getDateStarted(); 64 65 long getConnectionCount(); 66 } 67 68 99 | Popular Tags |