Package-level declarations

Types

Link copied to clipboard
object BooleanPool : ObjectPool<Boolean>

The boolean pool stores commonly used Boolean that must be created throughout the project and take a long time to build.

Link copied to clipboard
object DefaultPool : ObjectPool<Any>

The pool stores commonly used objects that must be created throughout the project and take a long time to build.

Link copied to clipboard
object DoublePool : ObjectPool<Double>

The double pool stores commonly used Double that must be created throughout the project and take a long time to build.

Link copied to clipboard
object FloatPool : ObjectPool<Float>

The float pool stores commonly used Float that must be created throughout the project and take a long time to build.

Link copied to clipboard
object IntPool : ObjectPool<Int>

The int pool stores commonly used Int that must be created throughout the project and take a long time to build.

Link copied to clipboard
object LongPool : ObjectPool<Long>

The long pool stores commonly used Long that must be created throughout the project and take a long time to build.

Link copied to clipboard
open class ObjectPool<T>

This class define a simple template of object pool pattern.

Link copied to clipboard
object StringPool : ObjectPool<String>

The string pool stores commonly used String that must be created throughout the project and take a long time to build.