Creates an object using the {@link PooledObjectFactory factory} or other implementation dependent mechanism, passivate it, and then place it in the idle object pool. <code>addObject</code> is useful for "pre-loading" a pool with idle objects. (Optional operation).
Obtains an instance from this pool. <p> Instances returned from this method will have been either newly created with {@link PooledObjectFactory#makeObject} or will be a previously idle object and have been activated with {@link PooledObjectFactory#activateObject} and then validated with {@link PooledObjectFactory#validateObject}. </p> <p> By contract, clients <strong>must</strong> return the borrowed instance using {@link #returnObject}, {@link #invalidateObject}, or a related method as defined in an implementation or sub-interface. </p> <p> The behaviour of this method when the pool has been exhausted is not strictly specified (although it may be specified by implementations). </p>
Clears any objects sitting idle in the pool, releasing any associated resources (optional operation). Idle objects cleared must be {@link PooledObjectFactory#destroyObject(PooledObject)}.
Closes this pool, and free any resources associated with it. <p> Calling {@link #addObject} or {@link #borrowObject} after invoking this method on a pool will cause them to throw an {@link IllegalStateException}. </p> <p> Implementations should silently fail if not all resources can be freed. </p>
Returns the number of instances currently borrowed from this pool. Returns a negative value if this information is not available. @return the number of instances currently borrowed from this pool.
Returns the number of instances currently idle in this pool. This may be considered an approximation of the number of objects that can be {@link #borrowObject borrowed} without creating any new instances. Returns a negative value if this information is not available. @return the number of instances currently idle in this pool.
Invalidates an object from the pool. <p> By contract, <code>obj</code> <strong>must</strong> have been obtained using {@link #borrowObject} or a related method as defined in an implementation or sub-interface. </p> <p> This method should be used when an object that has been borrowed is determined (due to an exception or other problem) to be invalid. </p>
Returns an instance to the pool. By contract, <code>obj</code> <strong>must</strong> have been obtained using {@link #borrowObject()} or a related method as defined in an implementation or sub-interface.
A pooling simple interface. <p> Example of use: </p> <pre style="border:solid thin; padding: 1ex;" > Object obj = <code style="color:#00C">null</code>;
<code style="color:#00C">try</code> { obj = pool.borrowObject(); <code style="color:#00C">try</code> { <code style="color:#0C0">//...use the object...</code> } <code style="color:#00C">catch</code>(Exception e) { <code style="color:#0C0">// invalidate the object</code> pool.invalidateObject(obj); <code style="color:#0C0">// do not return the object to the pool twice</code> obj = <code style="color:#00C">null</code>; } <code style="color:#00C">finally</code> { <code style="color:#0C0">// make sure the object is returned to the pool</code> <code style="color:#00C">if</code>(<code style="color:#00C">null</code> != obj) { pool.returnObject(obj); } } } <code style="color:#00C">catch</code>(Exception e) { <code style="color:#0C0">// failed to borrow an object</code> }</pre> <p> See {@link BaseObjectPool} for a simple base implementation. </p>
@param <T> Type of element pooled in this pool.
@see PooledObjectFactory @see KeyedObjectPool @see BaseObjectPool