Uses of Class
org.apache.bookkeeper.common.allocator.OutOfMemoryPolicy
-
Packages that use OutOfMemoryPolicy 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 OutOfMemoryPolicy in org.apache.bookkeeper.common.allocator
Methods in org.apache.bookkeeper.common.allocator that return OutOfMemoryPolicy Modifier and Type Method Description static OutOfMemoryPolicy
OutOfMemoryPolicy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OutOfMemoryPolicy[]
OutOfMemoryPolicy. 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 OutOfMemoryPolicy Modifier and Type Method Description ByteBufAllocatorBuilder
ByteBufAllocatorBuilder. outOfMemoryPolicy(OutOfMemoryPolicy policy)
Define the OutOfMemory handling policy. -
Uses of OutOfMemoryPolicy in org.apache.bookkeeper.common.allocator.impl
Fields in org.apache.bookkeeper.common.allocator.impl declared as OutOfMemoryPolicy Modifier and Type Field Description (package private) OutOfMemoryPolicy
ByteBufAllocatorBuilderImpl. outOfMemoryPolicy
Methods in org.apache.bookkeeper.common.allocator.impl with parameters of type OutOfMemoryPolicy Modifier and Type Method Description ByteBufAllocatorBuilder
ByteBufAllocatorBuilderImpl. outOfMemoryPolicy(OutOfMemoryPolicy policy)
Constructors in org.apache.bookkeeper.common.allocator.impl with parameters of type OutOfMemoryPolicy 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 OutOfMemoryPolicy in org.apache.bookkeeper.conf
Methods in org.apache.bookkeeper.conf that return OutOfMemoryPolicy Modifier and Type Method Description OutOfMemoryPolicy
AbstractConfiguration. getAllocatorOutOfMemoryPolicy()
Methods in org.apache.bookkeeper.conf with parameters of type OutOfMemoryPolicy Modifier and Type Method Description T
AbstractConfiguration. setAllocatorOutOfMemoryPolicy(OutOfMemoryPolicy oomPolicy)
Define the memory allocator out of memory policy.
-