Uses of Interface
org.datanucleus.store.rdbms.datasource.dbcp2.pool2.PooledObjectFactory
Packages that use PooledObjectFactory
Package
Description
This is a repackaged Apache Commons DBCP v2.7.0 and Apache Commons Pool v2.8.0.
This is a repackaged Apache Commons DBCP v2.7.0 and Apache Commons Pool v2.8.0.
This is a repackaged Apache Commons DBCP v2.7.0 and Apache Commons Pool v2.8.0.
This is a repackaged Apache Commons DBCP v2.7.0 and Apache Commons Pool v2.8.0.
-
Uses of PooledObjectFactory in org.datanucleus.store.rdbms.datasource.dbcp2
Classes in org.datanucleus.store.rdbms.datasource.dbcp2 that implement PooledObjectFactory -
Uses of PooledObjectFactory in org.datanucleus.store.rdbms.datasource.dbcp2.datasources
Classes in org.datanucleus.store.rdbms.datasource.dbcp2.datasources that implement PooledObjectFactoryModifier and TypeClassDescription(package private) classAPooledObjectFactorythat createsPoolableConnections. -
Uses of PooledObjectFactory in org.datanucleus.store.rdbms.datasource.dbcp2.pool2
Classes in org.datanucleus.store.rdbms.datasource.dbcp2.pool2 that implement PooledObjectFactoryModifier and TypeClassDescriptionclassA base implementation ofPoolableObjectFactory.private static final classA fully synchronized PooledObjectFactory that wraps a PooledObjectFactory and synchronizes access to the wrapped factory methods.Fields in org.datanucleus.store.rdbms.datasource.dbcp2.pool2 declared as PooledObjectFactoryModifier and TypeFieldDescriptionprivate final PooledObjectFactory<T> PoolUtils.SynchronizedPooledObjectFactory.factoryWrapped factoryMethods in org.datanucleus.store.rdbms.datasource.dbcp2.pool2 that return PooledObjectFactoryModifier and TypeMethodDescriptionstatic <T> PooledObjectFactory<T> PoolUtils.synchronizedPooledFactory(PooledObjectFactory<T> factory) Returns a synchronized (thread-safe) PooledObjectFactory backed by the specified PooledObjectFactory.Methods in org.datanucleus.store.rdbms.datasource.dbcp2.pool2 with parameters of type PooledObjectFactoryModifier and TypeMethodDescriptionstatic <T> PooledObjectFactory<T> PoolUtils.synchronizedPooledFactory(PooledObjectFactory<T> factory) Returns a synchronized (thread-safe) PooledObjectFactory backed by the specified PooledObjectFactory.Constructors in org.datanucleus.store.rdbms.datasource.dbcp2.pool2 with parameters of type PooledObjectFactoryModifierConstructorDescription(package private)Creates a SynchronizedPoolableObjectFactory wrapping the given factory. -
Uses of PooledObjectFactory in org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl
Fields in org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl declared as PooledObjectFactoryModifier and TypeFieldDescriptionprivate final PooledObjectFactory<T> GenericObjectPool.factoryprivate final PooledObjectFactory<T> SoftReferenceObjectPool.factoryFactory to source pooled objectsMethods in org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl that return PooledObjectFactoryModifier and TypeMethodDescriptionGenericObjectPool.getFactory()Obtains a reference to the factory used to create, destroy and validate the objects used by this pool.SoftReferenceObjectPool.getFactory()Returns thePooledObjectFactoryused by this pool to create and manage object instances.Method parameters in org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl with type arguments of type PooledObjectFactoryModifier and TypeMethodDescription(package private) static Class<?> PoolImplUtils.getFactoryType(Class<? extends PooledObjectFactory> factoryClass) Identifies the concrete type of object that an object factory creates.Constructors in org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl with parameters of type PooledObjectFactoryModifierConstructorDescriptionGenericObjectPool(PooledObjectFactory<T> factory) Creates a newGenericObjectPoolusing defaults fromGenericObjectPoolConfig.GenericObjectPool(PooledObjectFactory<T> factory, GenericObjectPoolConfig<T> config) Creates a newGenericObjectPoolusing a specific configuration.GenericObjectPool(PooledObjectFactory<T> factory, GenericObjectPoolConfig<T> config, AbandonedConfig abandonedConfig) Creates a newGenericObjectPoolthat tracks and destroys objects that are checked out, but never returned to the pool.SoftReferenceObjectPool(PooledObjectFactory<T> factory) Create aSoftReferenceObjectPoolwith the specified factory.