1 29 30 package com.caucho.jca.mbean; 31 32 35 public interface ConnectionPoolMBean { 36 39 public String getName(); 40 41 43 46 public int getMaxConnections(); 47 48 51 public int getMaxOverflowConnections(); 52 53 56 public int getMaxCreateConnections(); 57 58 61 public long getMaxIdleTime(); 62 63 66 public long getMaxActiveTime(); 67 68 71 public long getMaxPoolTime(); 72 73 76 public long getConnectionWaitTime(); 77 78 81 public boolean isShareable(); 82 83 86 public boolean isLocalTransactionOptimization(); 87 88 89 93 public int getConnectionCount(); 94 95 98 public int getActiveConnectionCount(); 99 100 103 public int getIdleConnectionCount(); 104 } 105 | Popular Tags |