예제 #1
0
 public ConnectionPoolManager(int count, boolean debug) throws ManifoldCFException {
   this.debug = debug;
   poolMap = new HashMap<String, ConnectionPool>(count);
   connectionCloserThread = new ConnectionCloserThread();
   connectionCloserThread.start();
 }