Uses of Interface
org.apache.commons.pool2.proxy.ProxySource
-
Packages that use ProxySource Package Description org.apache.commons.pool2.proxy Object pooling proxy implementations. -
-
Uses of ProxySource in org.apache.commons.pool2.proxy
Classes in org.apache.commons.pool2.proxy that implement ProxySource Modifier and Type Class Description classCglibProxySource<T>cglib is unmaintained and does not work well (or possibly at all?) in newer JDKs, particularly JDK17+; see https://github.com/cglib/cglibclassJdkProxySource<T>Provides proxy objects using Java reflection.Fields in org.apache.commons.pool2.proxy declared as ProxySource Modifier and Type Field Description private ProxySource<V>ProxiedKeyedObjectPool. proxySourceprivate ProxySource<T>ProxiedObjectPool. proxySourceConstructors in org.apache.commons.pool2.proxy with parameters of type ProxySource Constructor Description ProxiedKeyedObjectPool(KeyedObjectPool<K,V> pool, ProxySource<V> proxySource)Constructs a new proxied object pool.ProxiedObjectPool(ObjectPool<T> pool, ProxySource<T> proxySource)Constructs a new proxied object pool.
-