Uses of Class
edu.uiuc.ncsa.security.core.util.PoolException
-
Packages that use PoolException Package Description edu.uiuc.ncsa.security.core.util edu.uiuc.ncsa.security.storage.sql Classes that setup a specific type of correspondence between java objects and rows of an SQL table. -
-
Uses of PoolException in edu.uiuc.ncsa.security.core.util
Methods in edu.uiuc.ncsa.security.core.util that throw PoolException Modifier and Type Method Description abstract T
Pool. create()
Create a new, ready-to-use object for the poolabstract void
Pool. destroy(T object)
Destroy an object that is no longer needed.T
Pool. doCreate()
void
Pool. doDestroy(T item)
Destroying an item reduces the number of in-use items.boolean
Pool. isValid(T object)
Is this item still good? If not it will be removed from the pool so a new one can be created.T
Pool. pop()
Pop an object off the stack if there is one, otherwise, create one.void
Pool. push(T object)
Check an object into the pool. -
Uses of PoolException in edu.uiuc.ncsa.security.storage.sql
Methods in edu.uiuc.ncsa.security.storage.sql that throw PoolException Modifier and Type Method Description T
ConnectionPool. create()
void
ConnectionPool. destroy(T cc)
boolean
ConnectionPool. isValid(T t)
T
ConnectionPool. pop()
T
ConnectionPool. pop(long timeout)
void
ConnectionPool. push(T object)
-