Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static class

Pools.SynchronizedPool

extends Pools.SimplePool <T>
java.lang.Object
   ↳ android.support.v4.util.Pools.SimplePool <T>
     ↳ android.support.v4.util.Pools.SynchronizedPool<T>

Class Overview

Synchronized) pool of objects.

Summary

Public Constructors
Pools.SynchronizedPool (int maxPoolSize)
Creates a new instance.
Public Methods
T acquire ()
boolean release (T element)
Release an instance to the pool.
[Expand]
Inherited Methods
From class android.support.v4.util.Pools.SimplePool
From class java.lang.Object
From interface android.support.v4.util.Pools.Pool

Public Constructors

public Pools.SynchronizedPool (int maxPoolSize)

Creates a new instance.

Parameters
maxPoolSize The max pool size.
Throws
IllegalArgumentException If the max pool size is less than zero.

Public Methods

public T acquire ()

public boolean release (T element)

Release an instance to the pool.

Parameters
element The instance to release.
Returns
  • Whether the instance was put in the pool.