Uses of Class
com.landawn.abacus.pool.PoolableWrapper

Packages that use PoolableWrapper
Package
Description
 
  • Uses of PoolableWrapper in com.landawn.abacus.pool

    Modifier and Type
    Method
    Description
    static <T> PoolableWrapper<T>
    PoolableWrapper.of(T srcObject)
    Wrap the the source object with Long.MAX_VALUE liveTime and Long.MAX_VALUE maxIdleTime.
    static <T> PoolableWrapper<T>
    PoolableWrapper.of(T srcObject, long liveTime, long maxIdleTime)
    Wrap the the source object with specified liveTime and maxIdleTime.
    static <T> PoolableWrapper<T>
    Poolable.wrap(T srcObject)
    Wrap the the source object with Long.MAX_VALUE liveTime and Long.MAX_VALUE maxIdleTime.
    static <T> PoolableWrapper<T>
    Poolable.wrap(T srcObject, long liveTime, long maxIdleTime)
    Wrap the the source object with specified liveTime and maxIdleTime.