- Type Parameters:
T- the type ofPoolablecontained in the pool, and made available via this pool tap, as determined by the configured allocator.
- All Known Subinterfaces:
Pool<T>
- All Known Implementing Classes:
BlazePool,BlazePoolSingleThreadedTap,BlazePoolThreadSafeTap,BlazePoolVirtualThreadSafeTap
Pool.
PoolTaps are not necessarily thread-safe, but pools, which extend PoolTap, are always thread-safe.
- Author:
- Chris Vest
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault <R> Optional<R> Claim an object from the pool and apply the given function to it, returning the result and releasing the object back to the pool.Claim the exclusive rights until released, to an object in the pool.default booleanClaim an object from the pool and supply it to the given consumer, and then release it back to the pool.default TtryClaim()Returns an object from the pool if the pool contains at least one valid object, otherwise returnsnull.
-
Method Details
-
claim
Claim 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.
- 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.IllegalArgumentException- if thetimeoutargument isnull.
- The
-
tryClaim
Returns 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.- 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.
-
apply
Claim an object from the pool and apply the given function to it, returning the result and releasing the object back to the pool.If an object cannot be claimed within the given timeout, then
Optional.empty()is returned instead. Theempty()value is also returned if the function returnsnull.- Type Parameters:
R- The return type of the given function.- Parameters:
timeout- The timeout of the maximum permitted amount of time 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.function- The function to apply to the claimed object, if any. The function should avoid further claims, since having more than one object claimed at a time per thread is inherently deadlock prone.- Returns:
- an
Optionalof either the return value of applying the given function to a claimed object, or empty if the timeout elapsed or the function returnednull. - Throws:
InterruptedException- if the thread was interrupted.- See Also:
-
supply
Claim an object from the pool and supply it to the given consumer, and then release it back to the pool.If an object cannot be claimed within the given timeout, then this method returns
false. Otherwise, if an object was claimed and supplied to the consumer, the method returnstrue.- Parameters:
timeout- The timeout of the maximum permitted amount of time 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.consumer- The consumer to pass the claimed object to, if any. The consumer should avoid further claims, since having more than one object claimed at a time per thread is inherently deadlock prone.- Returns:
trueif an object could be claimed within the given timeout and passed to the given consumer, orfalseotherwise.- Throws:
InterruptedException- if the thread was interrupted.- See Also:
-