- Type Parameters:
T- The poolable type.
- All Implemented Interfaces:
PoolTap<T>
ThreadLocal.
This allows the pool tap to be used by virtual threads, without risking the undue memory overhead of thousands or millions of thread-locals.
-
Constructor Summary
ConstructorsConstructorDescriptionBlazePoolVirtualThreadSafeTap(BlazePool<T> pool, boolean optimizeForMemory) Create a virtual-thread-safe tap for the given pool. -
Method Summary
-
Constructor Details
-
BlazePoolVirtualThreadSafeTap
Create a virtual-thread-safe tap for the given pool.- Parameters:
pool- The pool to tap from.optimizeForMemory-trueto optimise for lower memory usage, otherwisefalseto prioritize performance.
-
-
Method Details
-
claim
Description copied from interface:PoolTapClaim the exclusive rights until released, to an object in the pool. Possibly waiting up to the specified amount of time, as given by the providedTimeoutinstance, for one to become available if the pool has been depleted. If the timeout elapses before an object can be claimed, thennullis returned instead. The timeout will be honoured even if the Allocatorsallocatemethods blocks forever. If the given timeout has a zero or negative value, then the method will not wait.If the current thread has already one or more objects currently claimed, then a distinct object will be returned, if one is or becomes available. This means that it is possible for a single thread to deplete the pool, if it so desires. However, doing so is inherently deadlock prone, so avoid claiming more than one object at a time per thread, if at all possible.
This method may throw a PoolException if the pool have trouble allocating objects. That is, if its assigned Allocator throws exceptions from its allocate method, or returns
null.An
InterruptedExceptionwill be thrown if the thread has its interrupted flag set upon entry to this method, or is interrupted while waiting. The interrupted flag on the thread will be cleared after this, as per the general contract of interruptible methods.If the pool has been shut down, then an
IllegalStateExceptionwill be thrown when this method is called. Likewise, if we are waiting for an object to become available, and someone shuts the pool down.Here's an example code snippet, where an object is claimed, printed to
System.out, and then released back to the pool:Poolable obj = pool.claim(TIMEOUT); if (obj != null) { try { System.out.println(obj); } finally { obj.release(); } }Memory effects:
- The
releaseof an object happens-before any subsequent claim ordeallocationof that object, and, - The
allocationof an object happens-before any claim of that object.
- Specified by:
claimin interfacePoolTap<T extends Poolable>- Parameters:
timeout- The timeout of the maximum permitted time-slice to wait for an object to become available. A timeout with a value of zero or less, means that the call will do no waiting, preferring instead to return early if no objects are available.- Returns:
- An object of the Poolable subtype T to which the exclusive rights
have been claimed, or
nullif the timeout period elapsed before an object became available. - Throws:
PoolException- If an object allocation failed because the Allocator threw an exception from its allocate method, or returnednull, or theexpiration checkthrew an exception.InterruptedException- if the current thread isinterruptedupon entry, or becomes interrupted while waiting.
- The
-
tryClaim
Description copied from interface:PoolTapReturns an object from the pool if the pool contains at least one valid object, otherwise returnsnull. This method will first try to return cached object if available. If no locally cached object is found, it will go through objects in the pool and return the first ready to claim object. If all the objects in the pool is drained, thennullwill be returned.- Specified by:
tryClaimin interfacePoolTap<T extends Poolable>- Returns:
- an object from the pool if the pool contains at least one valid object,
otherwise returns
null. - Throws:
PoolException- If an object allocation failed because the Allocator threw an exception from its allocate method, or returnednull, or theexpiration checkthrew an exception.
-