public interface DataSourcePoolListener
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
Notice: This listener only works if you are using the default Avaje
DataSourcePool.
| Modifier and Type | Method and Description |
|---|---|
void |
onAfterBorrowConnection(Connection connection)
Called after a connection has been retrieved from the connection pool
|
void |
onBeforeReturnConnection(Connection connection)
Called before a connection will be put back to the connection pool
|
void onAfterBorrowConnection(Connection connection)
void onBeforeReturnConnection(Connection connection)
Copyright © 2019. All rights reserved.