Uses of Interface
jfun.yan.Pool

Packages that use Pool
jfun.yan Basic component combinators and containers. 
 

Uses of Pool in jfun.yan
 

Classes in jfun.yan that implement Pool
 class CachingPool
          A thread-unsafe implementation of Pool that does simple caching.
 class GlobalScope
          Represents a pooling strategy that pools the data in a variable that's global to all threads.
 class SimplePool
          A simple implementation of Pool that uses null to indicate non-existent pool entry.
 class ThreadLocalScope
          Represents a pooling strategy that pools the data into a ThreadLocal object.
 

Methods in jfun.yan with parameters of type Pool
 Component DecoratingComponent.singleton(Pool scope)
           
static Component Components.singleton(Component cc, Pool scope)
          Create a new Component object that utilizes singleton pattern within the scope of the provided Pool object.
 Component Component.singleton(Pool scope)
          Create a new Component that utilizes singleton pattern within a scope specified by the provided Pool object when creating instance.
 

Constructors in jfun.yan with parameters of type Pool
PooledFactory(Factory factory, Pool pool)