Package com.mchange.v2.c3p0
Class AbstractConnectionTester
- java.lang.Object
-
- com.mchange.v2.c3p0.AbstractConnectionTester
-
- All Implemented Interfaces:
ConnectionTester,FullQueryConnectionTester,QueryConnectionTester,UnifiedConnectionTester,java.io.Serializable
- Direct Known Subclasses:
DefaultConnectionTester,IsValidOnlyConnectionTester
public abstract class AbstractConnectionTester extends java.lang.Object implements UnifiedConnectionTester
Having expanded the once-simple ConnectionTester interface to support both user-specified queries and return of root cause Exceptions (via an out-param), this interface has grown unnecessarily complex.
If you wish to implement a custom Connection tester, here is the simple way to do it
- Extend
AbstractConnectionTester -
Override only the two abstract methods
public int activeCheckConnection(Connection c, String preferredTestQuery, Throwable[] rootCauseOutParamHolder)public int statusOnException(Connection c, Throwable t, String preferredTestQuery, Throwable[] rootCauseOutParamHolder)
- Take care to ensure that your methods are defined to allow
preferredTestQueryandrootCauseOutParamHolderto benull.
Parameter
rootCauseOutParamHolderis an optional parameter, which if supplied, will be a Throwable array whose size it at least one. If a Connection test fails because of some Exception, the Connection tester may set this Exception as the zero-th element of the array to provide information about why and how the test failed.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface com.mchange.v2.c3p0.UnifiedConnectionTester
CONNECTION_IS_INVALID, CONNECTION_IS_OKAY, DATABASE_IS_INVALID
-
-
Constructor Summary
Constructors Constructor Description AbstractConnectionTester()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description intactiveCheckConnection(java.sql.Connection c)intactiveCheckConnection(java.sql.Connection c, java.lang.String preferredTestQuery)abstract intactiveCheckConnection(java.sql.Connection c, java.lang.String preferredTestQuery, java.lang.Throwable[] rootCauseOutParamHolder)Override, but remember thatpreferredTestQueryandrootCauseOutParamHoldercan be null.intactiveCheckConnection(java.sql.Connection c, java.lang.Throwable[] rootCauseOutParamHolder)booleanequals(java.lang.Object o)inthashCode()intstatusOnException(java.sql.Connection c, java.lang.Throwable t)intstatusOnException(java.sql.Connection c, java.lang.Throwable t, java.lang.String preferredTestQuery)abstract intstatusOnException(java.sql.Connection c, java.lang.Throwable t, java.lang.String preferredTestQuery, java.lang.Throwable[] rootCauseOutParamHolder)Override, but remember thatpreferredTestQueryandrootCauseOutParamHoldercan be null.intstatusOnException(java.sql.Connection c, java.lang.Throwable t, java.lang.Throwable[] rootCauseOutParamHolder)
-
-
-
Method Detail
-
activeCheckConnection
public abstract int activeCheckConnection(java.sql.Connection c, java.lang.String preferredTestQuery, java.lang.Throwable[] rootCauseOutParamHolder)Override, but remember thatpreferredTestQueryandrootCauseOutParamHoldercan be null.- Specified by:
activeCheckConnectionin interfaceUnifiedConnectionTester
-
statusOnException
public abstract int statusOnException(java.sql.Connection c, java.lang.Throwable t, java.lang.String preferredTestQuery, java.lang.Throwable[] rootCauseOutParamHolder)Override, but remember thatpreferredTestQueryandrootCauseOutParamHoldercan be null.- Specified by:
statusOnExceptionin interfaceUnifiedConnectionTester
-
activeCheckConnection
public int activeCheckConnection(java.sql.Connection c)
- Specified by:
activeCheckConnectionin interfaceConnectionTester- Specified by:
activeCheckConnectionin interfaceUnifiedConnectionTester
-
activeCheckConnection
public int activeCheckConnection(java.sql.Connection c, java.lang.Throwable[] rootCauseOutParamHolder)- Specified by:
activeCheckConnectionin interfaceUnifiedConnectionTester
-
activeCheckConnection
public int activeCheckConnection(java.sql.Connection c, java.lang.String preferredTestQuery)- Specified by:
activeCheckConnectionin interfaceQueryConnectionTester- Specified by:
activeCheckConnectionin interfaceUnifiedConnectionTester
-
statusOnException
public int statusOnException(java.sql.Connection c, java.lang.Throwable t)- Specified by:
statusOnExceptionin interfaceConnectionTester- Specified by:
statusOnExceptionin interfaceUnifiedConnectionTester
-
statusOnException
public int statusOnException(java.sql.Connection c, java.lang.Throwable t, java.lang.Throwable[] rootCauseOutParamHolder)- Specified by:
statusOnExceptionin interfaceUnifiedConnectionTester
-
statusOnException
public int statusOnException(java.sql.Connection c, java.lang.Throwable t, java.lang.String preferredTestQuery)- Specified by:
statusOnExceptionin interfaceFullQueryConnectionTester- Specified by:
statusOnExceptionin interfaceUnifiedConnectionTester
-
equals
public boolean equals(java.lang.Object o)
- Specified by:
equalsin interfaceUnifiedConnectionTester- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Specified by:
hashCodein interfaceUnifiedConnectionTester- Overrides:
hashCodein classjava.lang.Object
-
-