- Type Parameters:
T- any type that implements Poolable.
- All Superinterfaces:
Allocator<T>
- All Known Implementing Classes:
ReallocatingAdaptor
Allocator that can reallocate
Poolables that have expired. This is useful since the Pool
will typically keep the Poolables around for a relatively long time, with
respect to garbage collection. Because of this, there is a high chance that
the Poolables tenure to the old generation during their life-time. This
way, pools often cause a slow, but steady accretion of old generation
garbage, ultimately helping to increase the frequency of expensive full
collections.
The accretion of old generation garbage is inevitable, but the rate can be slowed by reusing as much as possible of the Poolable instances, when they are to be reallocated. This interface is only here to enable this optimisation, and implementing it is completely optional.
- Since:
- 2.2
- Author:
- Chris Vest
-
Method Summary
Modifier and TypeMethodDescriptionreallocate(Slot slot, T poolable) Possibly reallocate the given instance of T for the given slot, and return it if the reallocation was successful, or a fresh replacement if the instance could not be reallocated.Methods inherited from interface stormpot.Allocator
allocate, deallocate
-
Method Details
-
reallocate
Possibly reallocate the given instance of T for the given slot, and return it if the reallocation was successful, or a fresh replacement if the instance could not be reallocated.This method is effectively equivalent to the following:
With the only difference that it may, if possible, reuse the given expired Poolable, either wholly or in part.deallocate(poolable); return allocate(slot);The state stored in the
SlotInfofor the object is reset upon reallocation, just like it would be in the case of a normal deallocation-allocation cycle.Exceptions thrown by this method may propagate out through the
claimmethod of a pool, in the form of being wrapped inside aPoolException. Pools must be able to handle these exceptions in a sane manner, and are guaranteed to return to a working state if a Reallocator stops throwing exceptions from its reallocate method.Be aware that if the reallocation of an object fails with an exception, then no attempts will be made to explicitly deallocate that object. This way, a failed reallocation is implicitly understood to effectively be a successful deallocation.
- Parameters:
slot- The slot the pool wish to allocate an object for. Implementers do not need to concern themselves with the details of a pools slot objects. They just have to call release on them as the protocol demands.poolable- The non-null Poolable instance to be reallocated.- Returns:
- A fresh or rejuvenated instance of T. Never
null. - Throws:
Exception- If the allocation fails.- See Also:
-