GenericObjectPool.this

Creates a new <code>GenericObjectPool</code> that tracks and destroys objects that are checked out, but never returned to the pool.

@param factory The object factory to be used to create object instances used by this pool @param config The base pool configuration to use for this pool instance. The configuration is used by value. Subsequent changes to the configuration object will not be reflected in the pool. @param abandonedConfig Configuration for abandoned object identification and removal. The configuration is used by value.

  1. this(PooledObjectFactory!(T) factory)
  2. this(PooledObjectFactory!(T) factory, GenericObjectPoolConfig config)
  3. this(PooledObjectFactory!(T) factory, GenericObjectPoolConfig config, AbandonedConfig abandonedConfig)

Meta