Package com.linkedin.venice.utils.pools
-
Interface Summary Interface Description ObjectPool<O> An interface to get and give back objects that are intended to be long-lived and recycled, but where the location in the code for beginning to use the object is far from the location where we stop using it, e.g. -
Class Summary Class Description LandFillObjectPool<O> A dummy implementation which simply allocates a new object on everyObjectPool.get()
and lets the garbage collector dispose of it rather than reusing.