Uses of Class
org.datanucleus.store.rdbms.datasource.dbcp2.datasources.PooledConnectionAndInfo
-
Packages that use PooledConnectionAndInfo Package Description org.datanucleus.store.rdbms.datasource.dbcp2.datasources This is a repackaged Apache Commons DBCP v2.7.0 and Apache Commons Pool v2.8.0. -
-
Uses of PooledConnectionAndInfo in org.datanucleus.store.rdbms.datasource.dbcp2.datasources
Fields in org.datanucleus.store.rdbms.datasource.dbcp2.datasources with type parameters of type PooledConnectionAndInfo Modifier and Type Field Description private java.util.Map<javax.sql.PooledConnection,PooledConnectionAndInfo>
CPDSConnectionFactory. pcMap
Map of PooledConnectionAndInfo instancesprivate java.util.Map<javax.sql.PooledConnection,PooledConnectionAndInfo>
KeyedCPDSConnectionFactory. pcMap
Map of PooledConnectionAndInfo instancesprivate ObjectPool<PooledConnectionAndInfo>
CPDSConnectionFactory. pool
private KeyedObjectPool<UserPassKey,PooledConnectionAndInfo>
KeyedCPDSConnectionFactory. pool
private KeyedObjectPool<UserPassKey,PooledConnectionAndInfo>
SharedPoolDataSource. pool
Methods in org.datanucleus.store.rdbms.datasource.dbcp2.datasources that return PooledConnectionAndInfo Modifier and Type Method Description protected abstract PooledConnectionAndInfo
InstanceKeyDataSource. getPooledConnectionAndInfo(java.lang.String userName, java.lang.String userPassword)
protected PooledConnectionAndInfo
PerUserPoolDataSource. getPooledConnectionAndInfo(java.lang.String userName, java.lang.String password)
protected PooledConnectionAndInfo
SharedPoolDataSource. getPooledConnectionAndInfo(java.lang.String userName, java.lang.String userPassword)
Methods in org.datanucleus.store.rdbms.datasource.dbcp2.datasources that return types with arguments of type PooledConnectionAndInfo Modifier and Type Method Description private ObjectPool<PooledConnectionAndInfo>
PerUserPoolDataSource. getCPDSConnectionFactoryPool(PooledConnectionManager manager)
ObjectPool<PooledConnectionAndInfo>
CPDSConnectionFactory. getPool()
Returns the object pool used to pool connections created by this factory.KeyedObjectPool<UserPassKey,PooledConnectionAndInfo>
KeyedCPDSConnectionFactory. getPool()
Returns the keyed object pool used to pool connections created by this factory.private ObjectPool<PooledConnectionAndInfo>
PerUserPoolDataSource. getPool(PoolKey poolKey)
Returns the object pool associated with the given PoolKey.PooledObject<PooledConnectionAndInfo>
CPDSConnectionFactory. makeObject()
PooledObject<PooledConnectionAndInfo>
KeyedCPDSConnectionFactory. makeObject(UserPassKey upkey)
Creates a newPooledConnectionAndInfo
from the givenUserPassKey
.Methods in org.datanucleus.store.rdbms.datasource.dbcp2.datasources with parameters of type PooledConnectionAndInfo Modifier and Type Method Description private void
InstanceKeyDataSource. closeDueToException(PooledConnectionAndInfo info)
private void
CPDSConnectionFactory. doDestroyObject(PooledConnectionAndInfo pci)
Method parameters in org.datanucleus.store.rdbms.datasource.dbcp2.datasources with type arguments of type PooledConnectionAndInfo Modifier and Type Method Description void
CPDSConnectionFactory. activateObject(PooledObject<PooledConnectionAndInfo> p)
void
KeyedCPDSConnectionFactory. activateObject(UserPassKey key, PooledObject<PooledConnectionAndInfo> p)
void
CPDSConnectionFactory. destroyObject(PooledObject<PooledConnectionAndInfo> p)
Closes the PooledConnection and stops listening for events from it.void
KeyedCPDSConnectionFactory. destroyObject(UserPassKey key, PooledObject<PooledConnectionAndInfo> p)
Closes the PooledConnection and stops listening for events from it.void
CPDSConnectionFactory. passivateObject(PooledObject<PooledConnectionAndInfo> p)
void
KeyedCPDSConnectionFactory. passivateObject(UserPassKey key, PooledObject<PooledConnectionAndInfo> p)
void
CPDSConnectionFactory. setPool(ObjectPool<PooledConnectionAndInfo> pool)
void
KeyedCPDSConnectionFactory. setPool(KeyedObjectPool<UserPassKey,PooledConnectionAndInfo> pool)
private void
CPDSConnectionFactory. validateLifetime(PooledObject<PooledConnectionAndInfo> p)
private void
KeyedCPDSConnectionFactory. validateLifetime(PooledObject<PooledConnectionAndInfo> p)
boolean
CPDSConnectionFactory. validateObject(PooledObject<PooledConnectionAndInfo> p)
boolean
KeyedCPDSConnectionFactory. validateObject(UserPassKey key, PooledObject<PooledConnectionAndInfo> pooledObject)
Validates a pooled connection.
-