public class SimpleObjectPool<T>
extends Object
implements ObjectPool
Simple pool that attempts to maintain a specified number of objects in the pool. If more objects are created new ones
are created on the fly, and then destroyed once the pool is full.