Uses of Interface
org.postgresql.pljava.PooledObject

Packages that use PooledObject
org.postgresql.pljava   
org.postgresql.pljava.example   
 

Uses of PooledObject in org.postgresql.pljava
 

Methods in org.postgresql.pljava that return PooledObject
 PooledObject ObjectPool.activateInstance()
          Obtain a pooled object.
 

Methods in org.postgresql.pljava with parameters of type PooledObject
 void ObjectPool.passivateInstance(PooledObject instance)
          Call the passivate() method and return the object to the pool.
 void ObjectPool.removeInstance(PooledObject instance)
          Call the remove() method and evict the object from the pool.
 

Uses of PooledObject in org.postgresql.pljava.example
 

Classes in org.postgresql.pljava.example that implement PooledObject
 class UsingProperties