Uses of Interface
org.ow2.util.pool.impl.enhanced.api.IPool

Packages that use IPool
org.ow2.util.pool.impl.enhanced   
org.ow2.util.pool.impl.enhanced.api   
org.ow2.util.pool.impl.enhanced.api.basic   
org.ow2.util.pool.impl.enhanced.api.basic.clue   
org.ow2.util.pool.impl.enhanced.api.clue   
org.ow2.util.pool.impl.enhanced.api.recorder   
org.ow2.util.pool.impl.enhanced.api.recorder.clue   
org.ow2.util.pool.impl.enhanced.api.resizer   
org.ow2.util.pool.impl.enhanced.api.resizer.clue   
org.ow2.util.pool.impl.enhanced.api.thread   
org.ow2.util.pool.impl.enhanced.impl.basic   
org.ow2.util.pool.impl.enhanced.impl.basic.clue   
org.ow2.util.pool.impl.enhanced.impl.keepbusy   
org.ow2.util.pool.impl.enhanced.impl.keepbusy.clue   
org.ow2.util.pool.impl.enhanced.impl.limited   
org.ow2.util.pool.impl.enhanced.impl.limited.clue   
org.ow2.util.pool.impl.enhanced.impl.listener   
org.ow2.util.pool.impl.enhanced.impl.listener.clue   
org.ow2.util.pool.impl.enhanced.impl.listener.resizer   
org.ow2.util.pool.impl.enhanced.impl.listener.resizer.clue   
org.ow2.util.pool.impl.enhanced.impl.thread   
org.ow2.util.pool.impl.enhanced.impl.thread.managementthread   
org.ow2.util.pool.impl.enhanced.impl.thread.threadpoolexecutor   
org.ow2.util.pool.impl.enhanced.impl.thread.workmanager   
org.ow2.util.pool.impl.enhanced.impl.validator   
org.ow2.util.pool.impl.enhanced.impl.validator.clue   
org.ow2.util.pool.impl.enhanced.internal.resizer.impl.shared   
 

Uses of IPool in org.ow2.util.pool.impl.enhanced
 

Methods in org.ow2.util.pool.impl.enhanced that return IPool
static IPool<IReusableThread> ReusableThreadPoolFactory.createExecutorThreadPool(java.util.concurrent.Executor executor, int limit)
          Use the executor to create, fetch and record items of pool (Executor).
static IPool<IReusableThread> ReusableThreadPoolFactory.createManagementThreadPool(int poolSize)
          Use a management thread to create new pool item (Executor).
static IPool<IReusableThread> ReusableThreadPoolFactory.createWorkManagerThreadPool(javax.resource.spi.work.WorkManager workManager, int limit)
          Use the work manager to create, fetch and record items of pool (Executor).
 

Constructors in org.ow2.util.pool.impl.enhanced with parameters of type IPool
EnhancedCluePoolFactory(IPool<IReusableThread> pool)
           
EnhancedPoolFactory(IPool<IReusableThread> pool)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api
 

Methods in org.ow2.util.pool.impl.enhanced.api that return IPool
<E> IPool<E>
IPoolFactory.createPool(IPoolItemFactory<E> poolItemFactory)
          Create a pool.
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api.basic
 

Subinterfaces of IPool in org.ow2.util.pool.impl.enhanced.api.basic
 interface IBasicPool<E>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api.basic.clue
 

Subinterfaces of IPool in org.ow2.util.pool.impl.enhanced.api.basic.clue
 interface IBasicCluePool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api.clue
 

Subinterfaces of IPool in org.ow2.util.pool.impl.enhanced.api.clue
 interface ICluePool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api.recorder
 

Subinterfaces of IPool in org.ow2.util.pool.impl.enhanced.api.recorder
 interface IRecorderPool<E>
          The size of this pool is the number of not recorded item.
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api.recorder.clue
 

Subinterfaces of IPool in org.ow2.util.pool.impl.enhanced.api.recorder.clue
 interface IRecorderCluePool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api.resizer
 

Subinterfaces of IPool in org.ow2.util.pool.impl.enhanced.api.resizer
 interface IResizablePool<E>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api.resizer.clue
 

Subinterfaces of IPool in org.ow2.util.pool.impl.enhanced.api.resizer.clue
 interface IResizableCluePool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.api.thread
 

Methods in org.ow2.util.pool.impl.enhanced.api.thread with parameters of type IPool
 void IReusableThread.setUsed(IPool<IReusableThread> reusableThreadPool, java.lang.Runnable runnable)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.basic
 

Classes in org.ow2.util.pool.impl.enhanced.impl.basic that implement IPool
 class BasicPool<E>
          Basic pool implementation.
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.basic.clue
 

Classes in org.ow2.util.pool.impl.enhanced.impl.basic.clue that implement IPool
 class BasicCluePool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.keepbusy
 

Classes in org.ow2.util.pool.impl.enhanced.impl.keepbusy that implement IPool
 class KeepBusyPool<E>
           
 

Constructors in org.ow2.util.pool.impl.enhanced.impl.keepbusy with parameters of type IPool
KeepBusyPool(IPool<E> pool)
           
KeepBusyPool(IPool<E> pool, ReferenceType referenceType)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.keepbusy.clue
 

Classes in org.ow2.util.pool.impl.enhanced.impl.keepbusy.clue that implement IPool
 class KeepBusyCluePool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.limited
 

Classes in org.ow2.util.pool.impl.enhanced.impl.limited that implement IPool
 class LimitedWaiterPool<E>
           
 

Constructors in org.ow2.util.pool.impl.enhanced.impl.limited with parameters of type IPool
LimitedWaiterPool(IPool<E> pool)
           
LimitedWaiterPool(IPool<E> pool, int maxWaiter)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.limited.clue
 

Classes in org.ow2.util.pool.impl.enhanced.impl.limited.clue that implement IPool
 class LimitedWaiterCluePool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.listener
 

Classes in org.ow2.util.pool.impl.enhanced.impl.listener that implement IPool
 class PoolListenerDispatcherPool<E>
           
 

Constructors in org.ow2.util.pool.impl.enhanced.impl.listener with parameters of type IPool
PoolListenerDispatcherPool(IPool<E> pool)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.listener.clue
 

Classes in org.ow2.util.pool.impl.enhanced.impl.listener.clue that implement IPool
 class CluePoolListenerDispatcherPool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.listener.resizer
 

Classes in org.ow2.util.pool.impl.enhanced.impl.listener.resizer that implement IPool
 class StatsResizerPool<E,S>
           
 

Constructors in org.ow2.util.pool.impl.enhanced.impl.listener.resizer with parameters of type IPool
StatsResizerPool(IPool<E> pool, IPoolStatsListener<E,S> poolStatsListener, S instance, IResizer<S> resizer)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.listener.resizer.clue
 

Classes in org.ow2.util.pool.impl.enhanced.impl.listener.resizer.clue that implement IPool
 class StatsResizerCluePool<E,C,S>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.thread
 

Methods in org.ow2.util.pool.impl.enhanced.impl.thread with parameters of type IPool
 void AbstractReusableThread.setUsed(IPool<IReusableThread> reusableThreadPool, java.lang.Runnable runnable)
           
 

Constructors in org.ow2.util.pool.impl.enhanced.impl.thread with parameters of type IPool
ThreadPool(IPool<IReusableThread> pool)
           
ThreadPool(IPool<IReusableThread> pool, java.lang.Long waitTimeBeforeUsingSelfThread)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.thread.managementthread
 

Methods in org.ow2.util.pool.impl.enhanced.impl.thread.managementthread with parameters of type IPool
 void ManagementThreadReusableThread.setUsed(IPool<IReusableThread> reusableThreadPool, java.lang.Runnable runnable)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.thread.threadpoolexecutor
 

Methods in org.ow2.util.pool.impl.enhanced.impl.thread.threadpoolexecutor with parameters of type IPool
 void ExecutorReusableThread.setUsed(IPool<IReusableThread> reusableThreadPool, java.lang.Runnable runnable)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.thread.workmanager
 

Methods in org.ow2.util.pool.impl.enhanced.impl.thread.workmanager with parameters of type IPool
 void WorkManagerReusableThread.setUsed(IPool<IReusableThread> reusableThreadPool, java.lang.Runnable runnable)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.validator
 

Classes in org.ow2.util.pool.impl.enhanced.impl.validator that implement IPool
 class ValidatorPool<E>
           
 

Constructors in org.ow2.util.pool.impl.enhanced.impl.validator with parameters of type IPool
ValidatorPool(IPool<E> pool, IPoolValidator<E> poolValidator, boolean putValidate)
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.impl.validator.clue
 

Classes in org.ow2.util.pool.impl.enhanced.impl.validator.clue that implement IPool
 class ValidatorCluePool<E,C>
           
 

Uses of IPool in org.ow2.util.pool.impl.enhanced.internal.resizer.impl.shared
 

Constructors in org.ow2.util.pool.impl.enhanced.internal.resizer.impl.shared with parameters of type IPool
SharedResizerPoolThreadManager(IPool<IReusableThread> reusableThreadPool)
           
 



Copyright © 2007-2009 OW2 Consortium. All Rights Reserved.