Package com.mchange.v2.c3p0.test
Class TestConnectionCustomizer
java.lang.Object
com.mchange.v2.c3p0.AbstractConnectionCustomizer
com.mchange.v2.c3p0.test.TestConnectionCustomizer
- All Implemented Interfaces:
ConnectionCustomizer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidonAcquire(Connection c, String pdsIdt) Called immediately after a Connection is acquired from the underlying database for incorporation into the pool.voidonCheckIn(Connection c, String pdsIdt) Called immediately after a Connection is checked in, prior to reincorporation into the pool.voidonCheckOut(Connection c, String pdsIdt) Called immediately before a Connection is made available to a client upon checkout.voidonDestroy(Connection c, String pdsIdt) Called immediately before a Connection is destroyed after being removed from the pool.Methods inherited from class com.mchange.v2.c3p0.AbstractConnectionCustomizer
extensionsForToken
-
Constructor Details
-
TestConnectionCustomizer
public TestConnectionCustomizer()
-
-
Method Details
-
onAcquire
Description copied from interface:ConnectionCustomizerCalled immediately after a Connection is acquired from the underlying database for incorporation into the pool.
This method is only called once per Connection. If standard JDBC Connection properties are modified — specifically catalog, holdability, transactionIsolation, readOnly, and typeMap — those modifications will override defaults throughout the Connection's tenure in the pool.
- Specified by:
onAcquirein interfaceConnectionCustomizer- Overrides:
onAcquirein classAbstractConnectionCustomizer
-
onDestroy
Description copied from interface:ConnectionCustomizerCalled immediately before a Connection is destroyed after being removed from the pool.- Specified by:
onDestroyin interfaceConnectionCustomizer- Overrides:
onDestroyin classAbstractConnectionCustomizer
-
onCheckOut
Description copied from interface:ConnectionCustomizerCalled immediately before a Connection is made available to a client upon checkout.- Specified by:
onCheckOutin interfaceConnectionCustomizer- Overrides:
onCheckOutin classAbstractConnectionCustomizer
-
onCheckIn
Description copied from interface:ConnectionCustomizerCalled immediately after a Connection is checked in, prior to reincorporation into the pool.- Specified by:
onCheckInin interfaceConnectionCustomizer- Overrides:
onCheckInin classAbstractConnectionCustomizer
-