Uses of Class
org.apache.bookkeeper.common.allocator.PoolingPolicy
-
Packages that use PoolingPolicy Package Description org.apache.bookkeeper.common.allocator defines the utilities for allocator used across the project.org.apache.bookkeeper.common.allocator.impl Implements the utilities for allocator used across the project.org.apache.bookkeeper.conf Configurations used by bookkeeper. -
-
Uses of PoolingPolicy in org.apache.bookkeeper.common.allocator
Methods in org.apache.bookkeeper.common.allocator that return PoolingPolicy Modifier and Type Method Description static PoolingPolicy
PoolingPolicy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PoolingPolicy[]
PoolingPolicy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.bookkeeper.common.allocator with parameters of type PoolingPolicy Modifier and Type Method Description ByteBufAllocatorBuilder
ByteBufAllocatorBuilder. poolingPolicy(PoolingPolicy policy)
Define the memory pooling policy. -
Uses of PoolingPolicy in org.apache.bookkeeper.common.allocator.impl
Fields in org.apache.bookkeeper.common.allocator.impl declared as PoolingPolicy Modifier and Type Field Description (package private) PoolingPolicy
ByteBufAllocatorBuilderImpl. poolingPolicy
Methods in org.apache.bookkeeper.common.allocator.impl with parameters of type PoolingPolicy Modifier and Type Method Description ByteBufAllocatorBuilder
ByteBufAllocatorBuilderImpl. poolingPolicy(PoolingPolicy policy)
Constructors in org.apache.bookkeeper.common.allocator.impl with parameters of type PoolingPolicy Constructor Description ByteBufAllocatorImpl(io.netty.buffer.ByteBufAllocator pooledAllocator, io.netty.buffer.ByteBufAllocator unpooledAllocator, PoolingPolicy poolingPolicy, int poolingConcurrency, OutOfMemoryPolicy outOfMemoryPolicy, java.util.function.Consumer<java.lang.OutOfMemoryError> outOfMemoryListener, LeakDetectionPolicy leakDetectionPolicy)
ByteBufAllocatorImpl(io.netty.buffer.ByteBufAllocator pooledAllocator, io.netty.buffer.ByteBufAllocator unpooledAllocator, PoolingPolicy poolingPolicy, int poolingConcurrency, OutOfMemoryPolicy outOfMemoryPolicy, java.util.function.Consumer<java.lang.OutOfMemoryError> outOfMemoryListener, LeakDetectionPolicy leakDetectionPolicy, boolean exitOnOutOfMemory)
-
Uses of PoolingPolicy in org.apache.bookkeeper.conf
Methods in org.apache.bookkeeper.conf that return PoolingPolicy Modifier and Type Method Description PoolingPolicy
AbstractConfiguration. getAllocatorPoolingPolicy()
Methods in org.apache.bookkeeper.conf with parameters of type PoolingPolicy Modifier and Type Method Description T
AbstractConfiguration. setAllocatorPoolingPolicy(PoolingPolicy poolingPolicy)
Define the memory pooling policy.
-