Object pool pattern: Difference between revisions

Content deleted Content added
Qxz (talk | contribs)
m Revert edit(s) by 61.95.179.194 to last version by Arunkd13
Line 10:
# Allocate a new object, thus increasing the size of the pool. Pools that do this usually allow you to see the [[high water mark]] (the maximum number of objects ever used).
# In a [[Thread (computer science)|multithreaded]] environment, a pool may block the client until another thread returns an object to the pool.
by femymol
 
== Pitfalls ==