Package org.apache.commons.dbcp2.managed
Class PoolableManagedConnection
- java.lang.Object
-
- org.apache.commons.dbcp2.AbandonedTrace
-
- org.apache.commons.dbcp2.DelegatingConnection<java.sql.Connection>
-
- org.apache.commons.dbcp2.PoolableConnection
-
- org.apache.commons.dbcp2.managed.PoolableManagedConnection
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,java.sql.Connection
,java.sql.Wrapper
,PoolableConnectionMXBean
,org.apache.commons.pool2.TrackedUse
public class PoolableManagedConnection extends PoolableConnection
PoolableConnection that unregisters from TransactionRegistry on Connection real destroy.- Since:
- 2.0
- Version:
- $Id: PoolableManagedConnection.java 1649430 2015-01-04 21:29:32Z tn $
- See Also:
PoolableConnection
-
-
Constructor Summary
Constructors Constructor Description PoolableManagedConnection(TransactionRegistry transactionRegistry, java.sql.Connection conn, org.apache.commons.pool2.ObjectPool<PoolableConnection> pool)
Create a PoolableManagedConnection.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
reallyClose()
Actually close the underlying connection.-
Methods inherited from class org.apache.commons.dbcp2.PoolableConnection
close, getToString, isClosed, validate
-
Methods inherited from class org.apache.commons.dbcp2.DelegatingConnection
abort, clearCachedState, clearWarnings, commit, createArrayOf, createBlob, createClob, createNClob, createSQLXML, createStatement, createStatement, createStatement, createStruct, getAutoCommit, getCacheState, getCatalog, getClientInfo, getClientInfo, getDefaultQueryTimeout, getDelegate, getHoldability, getInnermostDelegate, getInnermostDelegateInternal, getMetaData, getNetworkTimeout, getSchema, getTransactionIsolation, getTypeMap, getWarnings, innermostDelegateEquals, isReadOnly, isValid, isWrapperFor, nativeSQL, prepareCall, prepareCall, prepareCall, prepareStatement, prepareStatement, prepareStatement, prepareStatement, prepareStatement, prepareStatement, releaseSavepoint, rollback, rollback, setAutoCommit, setCacheState, setCatalog, setClientInfo, setClientInfo, setDefaultQueryTimeout, setDelegate, setHoldability, setNetworkTimeout, setReadOnly, setSavepoint, setSavepoint, setSchema, setTransactionIsolation, setTypeMap, toString, unwrap
-
Methods inherited from class org.apache.commons.dbcp2.AbandonedTrace
getLastUsed
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.sql.Connection
beginRequest, endRequest, setShardingKey, setShardingKey, setShardingKeyIfValid, setShardingKeyIfValid
-
Methods inherited from interface org.apache.commons.dbcp2.PoolableConnectionMXBean
clearCachedState, clearWarnings, getAutoCommit, getCacheState, getCatalog, getHoldability, getSchema, getTransactionIsolation, isReadOnly, setAutoCommit, setCacheState, setCatalog, setHoldability, setReadOnly, setSchema, setTransactionIsolation
-
-
-
-
Constructor Detail
-
PoolableManagedConnection
public PoolableManagedConnection(TransactionRegistry transactionRegistry, java.sql.Connection conn, org.apache.commons.pool2.ObjectPool<PoolableConnection> pool)
Create a PoolableManagedConnection.- Parameters:
transactionRegistry
- transaction registryconn
- underlying connectionpool
- connection pool
-
-
Method Detail
-
reallyClose
public void reallyClose() throws java.sql.SQLException
Actually close the underlying connection.- Specified by:
reallyClose
in interfacePoolableConnectionMXBean
- Overrides:
reallyClose
in classPoolableConnection
- Throws:
java.sql.SQLException
-
-