Uses of Interface
org.miaixz.bus.core.lang.pool.Poolable
Packages that use Poolable
Package
Description
对象池封装实现 整体参考了:
https://github.com/DanielYWoo/fast-object-pool/
https://github.com/apache/commons-pool
基于分区的对象池实现,参考:https://github.com/DanielYWoo/fast-object-pool
-
Uses of Poolable in org.miaixz.bus.core.lang.pool
Classes in org.miaixz.bus.core.lang.pool that implement Poolable -
Uses of Poolable in org.miaixz.bus.core.lang.pool.partition
Classes in org.miaixz.bus.core.lang.pool.partition that implement PoolableMethods in org.miaixz.bus.core.lang.pool.partition that return PoolableMethods in org.miaixz.bus.core.lang.pool.partition that return types with arguments of type PoolableModifier and TypeMethodDescriptionprotected BlockingQueue<Poolable<T>> PartitionObjectPool.createBlockingQueue(PartitionPoolConfig poolConfig) 创建阻塞队列,默认为ArrayBlockingQueue如果需要自定义队列类型,子类重写此方法Constructor parameters in org.miaixz.bus.core.lang.pool.partition with type arguments of type PoolableModifierConstructorDescriptionPoolPartition(PoolConfig config, BlockingQueue<Poolable<T>> queue, ObjectFactory<T> objectFactory) 构造