I wanted to know that, is it possible to create a pool of objects? So that I can take an object from the pool and once I\'m done with the work, I can put it into the pool.>
As an alternative, if each object isn't that heavy weight, and/or you don't mind keeping the object around for each thread, consider ThreadLocal objects.