public interface DataSourcePoolListener
A
DataSourcePool listener which allows you to hook on the
borrow/return process of getting or returning connections from the pool.
In the configuration use the poolListener key to configure which listener to use.
Example: datasource.ora10.poolListener=my.very.fancy.PoolListener
-
Method Summary
Modifier and TypeMethodDescriptionvoidonAfterBorrowConnection(Connection connection) Called after a connection has been retrieved from the connection poolvoidonBeforeReturnConnection(Connection connection) Called before a connection will be put back to the connection pool
-
Method Details
-
onAfterBorrowConnection
Called after a connection has been retrieved from the connection pool -
onBeforeReturnConnection
Called before a connection will be put back to the connection pool
-