Enum Class OutOfMemoryPolicy
- All Implemented Interfaces:
Serializable,Comparable<OutOfMemoryPolicy>,Constable
Represents the action to take when it's not possible to allocate memory.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf it's not possible to allocate a buffer from direct memory, fallback to allocate an unpooled buffer from JVM heap.Throw regular OOM exception without taking addition actions. -
Method Summary
Modifier and TypeMethodDescriptionstatic OutOfMemoryPolicyReturns the enum constant of this class with the specified name.static OutOfMemoryPolicy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ThrowException
Throw regular OOM exception without taking addition actions. -
FallbackToHeap
If it's not possible to allocate a buffer from direct memory, fallback to allocate an unpooled buffer from JVM heap.This will help absorb memory allocation spikes because the heap allocations will naturally slow down the process and will result if full GC cleanup if the Heap itself is full.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-