added in version 22.1.0
belongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1
belongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1
Pools
public
final
class
Pools
extends Object
java.lang.Object | |
↳ | android.support.v4.util.Pools |
Helper class for creating pools of objects. An example use looks like this:
public class MyPooledClass { private static final SynchronizedPoolsPool = new SynchronizedPool (10); public static MyPooledClass obtain() { MyPooledClass instance = sPool.acquire(); return (instance != null) ? instance : new MyPooledClass(); } public void recycle() { // Clear state if needed. sPool.release(this); } . . . }
Summary
Nested classes | |
---|---|
interface |
Pools.Pool<T>
Interface for managing a pool of objects. |
class |
Pools.SimplePool<T>
Simple (non-synchronized) pool of objects. |
class |
Pools.SynchronizedPool<T>
Synchronized) pool of objects. |
Inherited methods | |
---|---|
From
class
java.lang.Object
|
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-11 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-04-11 UTC."],[],[]]