Pools.Pool
public
static
interface
Pools.Pool
| androidx.core.util.Pools.Pool<T>
|
Known indirect subclasses
|
Interface for managing a pool of objects.
Summary
Public methods |
abstract
T
|
acquire()
|
abstract
boolean
|
release(T instance)
Release an instance to the pool.
|
Public methods
acquire
public abstract T acquire ()
| Returns |
T |
An instance from the pool if such, null otherwise.
|
release
public abstract boolean release (T instance)
Release an instance to the pool.
| Parameters |
instance |
T: The instance to release. |
| Returns |
boolean |
Whether the instance was put in the pool. |
| Throws |
IllegalStateException |
If the instance is already in the pool.
|
Content and code samples on this page are subject to the licenses described in the Content License. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2021-02-24 UTC.
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"Missing the information I need"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"Too complicated / too many steps"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"Out of date"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"Samples / code issue"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"Other"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"Easy to understand"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"Solved my problem"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"Other"
}]