1 6 package org.logicalcobwebs.proxool.admin; 7 8 import org.logicalcobwebs.proxool.ConnectionInfoIF; 9 10 import java.util.Date ; 11 12 20 public interface SnapshotIF { 21 22 26 Date getDateStarted(); 27 28 32 long getServedCount(); 33 34 38 long getRefusedCount(); 39 40 44 int getActiveConnectionCount(); 45 46 50 int getAvailableConnectionCount(); 51 52 57 int getOfflineConnectionCount(); 58 59 64 int getMaximumConnectionCount(); 65 66 70 Date getSnapshotDate(); 71 72 78 ConnectionInfoIF[] getConnectionInfos(); 79 80 87 ConnectionInfoIF getConnectionInfo(long id); 88 89 95 boolean isDetail(); 96 97 long getConnectionCount(); 98 } 99 100 101 | Popular Tags |