| java.lang.Object com.ibatis.common.util.ThrottledPool
ThrottledPool | public class ThrottledPool (Code) | | This is a pool of Throttle objects (!)
|
ThrottledPool | public ThrottledPool(Class type, int size)(Code) | | Create a ThrottledPool for a Class
Parameters: type - - the type of objects being managed Parameters: size - - the size of the pool |
pop | public Object pop()(Code) | | Pop an object from the pool
- the Object |
push | public void push(Object o)(Code) | | Push an object onto the pool
Parameters: o - - the object to put into the pool |
|
|