-
Packages that use AbandonedTrace Package Description org.apache.commons.dbcp2 Database Connection Pool API.org.apache.commons.dbcp2.managed This package provides support for pooling of ManagedConnections. -
-
Uses of AbandonedTrace in org.apache.commons.dbcp2
Subclasses of AbandonedTrace in org.apache.commons.dbcp2 Modifier and Type Class and Description class
DelegatingCallableStatement
A base delegating implementation ofCallableStatement
.class
DelegatingConnection<C extends Connection>
A base delegating implementation ofConnection
.class
DelegatingPreparedStatement
A base delegating implementation ofPreparedStatement
.class
DelegatingResultSet
A base delegating implementation ofResultSet
.class
DelegatingStatement
A base delegating implementation ofStatement
.class
PoolableCallableStatement
ADelegatingCallableStatement
that cooperates withPoolingConnection
to implement a pool ofCallableStatement
s.class
PoolableConnection
A delegating connection that, rather than closing the underlying connection, returns itself to anObjectPool
when closed.class
PoolablePreparedStatement<K>
ADelegatingPreparedStatement
that cooperates withPoolingConnection
to implement a pool ofPreparedStatement
s.class
PoolingConnection
ADelegatingConnection
that poolsPreparedStatement
s.Methods in org.apache.commons.dbcp2 that return types with arguments of type AbandonedTrace Modifier and Type Method and Description protected List<AbandonedTrace>
AbandonedTrace. getTrace()
Gets a list of objects being traced by this object.Methods in org.apache.commons.dbcp2 with parameters of type AbandonedTrace Modifier and Type Method and Description protected void
AbandonedTrace. addTrace(AbandonedTrace trace)
Adds an object to the list of objects being traced.protected void
AbandonedTrace. removeTrace(AbandonedTrace trace)
Removes a child object this object is tracing.Constructors in org.apache.commons.dbcp2 with parameters of type AbandonedTrace Constructor and Description AbandonedTrace(AbandonedTrace parent)
Constructs a new AbandonedTrace with a parent object. -
Uses of AbandonedTrace in org.apache.commons.dbcp2.managed
Subclasses of AbandonedTrace in org.apache.commons.dbcp2.managed Modifier and Type Class and Description class
ManagedConnection<C extends Connection>
ManagedConnection is responsible for managing a database connection in a transactional environment (typically called "Container Managed").class
PoolableManagedConnection
PoolableConnection that unregisters from TransactionRegistry on Connection real destroy.
-