1 23 24 29 30 package com.sun.appserv.management.monitor.statistics; 31 32 import javax.management.j2ee.statistics.Stats ; 33 import javax.management.j2ee.statistics.CountStatistic ; 34 35 38 public interface KeepAliveStats extends Stats  39 { 40 43 public CountStatistic getCountTimeouts(); 44 45 48 public CountStatistic getCountConnections(); 49 50 56 public CountStatistic getSecondsTimeouts(); 57 58 61 public CountStatistic getMaxConnections(); 62 63 64 67 public CountStatistic getCountRefusals(); 68 69 72 public CountStatistic getCountFlushes(); 73 74 77 public CountStatistic getCountHits(); 78 } 79 | Popular Tags |