Uses of Class
com.github.robtimus.pool.PoolLogger
-
-
Uses of PoolLogger in com.github.robtimus.pool
Methods in com.github.robtimus.pool that return PoolLogger Modifier and Type Method Description PoolLogger
PoolLogger.Builder. build()
Creates a newPoolLogger
object based on the settings of this builder.static PoolLogger
PoolLogger. defaultLogger()
Returns a defaultPoolLogger
object.static PoolLogger
PoolLogger. noopLogger()
Returns aPoolLogger
object that does not perform any actual logging.Methods in com.github.robtimus.pool with parameters of type PoolLogger Modifier and Type Method Description static <T> Pool<ObjectWrapper<T>,None>
ObjectWrapper. newPool(PoolConfig config, Supplier<T> supplier, PoolLogger logger)
Creates a new pool ofObjectWrapper
instances.static <T extends PoolableObject<None>>
Pool<T,None>Pool. throwingNone(PoolConfig config, Supplier<T> supplier, PoolLogger logger)
Creates a new pool that throws no exceptions.Constructors in com.github.robtimus.pool with parameters of type PoolLogger Constructor Description Pool(PoolConfig config, PoolableObjectFactory<T,X> factory, PoolLogger logger)
Creates a new pool.
-