This method adds a connection leak listener. The methods of
cle will be called when a leak is detected as per the
pool configuration.
Parameters: cle - Class implementing ConnectionLeakListener interface. exception: ConnectionPoolException - If there is any problem adding ConnectionLeakListener.
This method returns a Connection from the connection pool.
The owner of this pool is marked as N/A indicating unknown.
Note: This method blocks if the pool size has reached it's
maximum size and no free connections are available
until a free connection is available. The time period for which this
method blocks depends on the connection-wait-time-out specified in
the configuration file.
Connection from the pool exception: ConnectionPoolException - if there is any problem getting connection.
This method returns a Connection from the pool.
The owner of this connection is identified by owner .
Note: This method blocks if the pool size has reached it's
maximum size and no free connections are available
until a free connection is available. The time period for which this
method blocks depends on the connection-wait-time-out specified in
the configuration file.
Parameters: owner - String identifying the owner. Connection from the pool exception: ConnectionPoolException - if there is any problem getting connection.
This method removes a connection leak listener.cle will
not get any further notifications.
Parameters: cle - Class implementing ConnectionLeakListener interface. exception: ConnectionPoolException - If there is any problem removing ConnectionLeakListener.