Uses of Interface
stormpot.Pool

Packages that use Pool
Package
Description
Stormpot
 
  • Uses of Pool in stormpot

    Methods in stormpot that return Pool
    Modifier and Type
    Method
    Description
    PoolBuilder.build()
    Build a Pool instance based on the collected configuration.
    static <T> Pool<Pooled<T>>
    Pool.of(T... objects)
    Build a Pool instance that pools the given set of objects.
  • Uses of Pool in stormpot.internal

    Classes in stormpot.internal that implement Pool
    Modifier and Type
    Class
    Description
    final class 
    BlazePool<T extends Poolable>
    BlazePool is a highly optimised Pool implementation that consists of a queues of Poolable instances, the access to which is made faster with clever use of ThreadLocals.
    Methods in stormpot.internal that return Pool
    Modifier and Type
    Method
    Description
    PoolBuilderImpl.build()