Uses of Class
io.github.jbellis.jvector.util.PoolingSupport
Packages that use PoolingSupport
-
Uses of PoolingSupport in io.github.jbellis.jvector.util
Methods in io.github.jbellis.jvector.util that return PoolingSupportModifier and TypeMethodDescriptionstatic <T> PoolingSupport<T> PoolingSupport.newNoPooling(T fixedValue) Special case of not actually needing a pool (when other times you do)static <T> PoolingSupport<T> PoolingSupport.newQueuePooling(int limit, Supplier<T> initialValue) Recycling of objects using a MPMC queuestatic <T> PoolingSupport<T> PoolingSupport.newThreadBased(Supplier<T> initialValue) Creates a pool of objects intended to be used by a thread pool.