Package io.deephaven.chunk.util.pools
Class ChunkPoolConstants
java.lang.Object
io.deephaven.chunk.util.pools.ChunkPoolConstants
Repository for constants used by
ChunkPool
implementations.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The largest chunk capacity that will be pooled.static final boolean
Whether the chunk pool should pool resettable chunks, i.e., *ResettableReadOnlyChunk
orResettableWritableChunk
instances.static final boolean
Whether the chunk pool should pool writable chunks, i.e.,WritableChunk WritableChunk
instances.static final int
The smallest chunk capacity that will be pooled. -
Method Summary
-
Field Details
-
SMALLEST_POOLED_CHUNK_CAPACITY
public static final int SMALLEST_POOLED_CHUNK_CAPACITYThe smallest chunk capacity that will be pooled. -
LARGEST_POOLED_CHUNK_CAPACITY
public static final int LARGEST_POOLED_CHUNK_CAPACITYThe largest chunk capacity that will be pooled. -
POOL_RESETTABLE_CHUNKS
public static final boolean POOL_RESETTABLE_CHUNKSWhether the chunk pool should pool resettable chunks, i.e., *ResettableReadOnlyChunk
orResettableWritableChunk
instances. -
POOL_WRITABLE_CHUNKS
public static final boolean POOL_WRITABLE_CHUNKSWhether the chunk pool should pool writable chunks, i.e.,WritableChunk WritableChunk
instances.
-