io.deephaven.engine.table.impl.vector.VectorColumnWrapperConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-table Show documentation
Show all versions of deephaven-engine-table Show documentation
Engine Table: Implementation and closely-coupled utilities
package io.deephaven.engine.table.impl.vector;
import io.deephaven.configuration.Configuration;
/**
* Repository for constants used by the column-wrapper vector implementations.
*/
public class VectorColumnWrapperConstants {
/**
* Size threshold at which column-wrapper vector implementations will use a
* {@link io.deephaven.engine.table.iterators.ChunkedColumnIterator ChunkedColumnIterator} instead of a
* {@link io.deephaven.engine.table.iterators.SerialColumnIterator SerialColumnIterator}.
*/
static final int CHUNKED_COLUMN_ITERATOR_SIZE_THRESHOLD = Configuration.getInstance().getIntegerWithDefault(
"VectorColumnWrapper.chunkedColumnIteratorSizeThreshold", 1 << 7);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy