ConnectionCacheBlockingBase(String cacheType, int highWaterMark, int numberToReclaim, Logger logger)
super( cacheType, highWaterMark, numberToReclaim, logger ) ;
this.totalBusy = 0 ;
this.totalIdle = 0 ;
this.reclaimableConnections =
ConcurrentQueueFactory.<C>makeConcurrentQueue() ;
|