Class CompressedColumnarDoublesSuppliers

java.lang.Object
org.apache.druid.segment.data.CompressedColumnarDoublesSuppliers

public class CompressedColumnarDoublesSuppliers extends Object
  • Field Details

  • Method Details

    • fromByteBuffer

      public static com.google.common.base.Supplier<ColumnarDoubles> fromByteBuffer(ByteBuffer buffer, ByteOrder order, SegmentFileMapper fileMapper)
      Reads a column from a ByteBuffer, possibly using additional secondary files from a SegmentFileMapper.
      Parameters:
      buffer - primary buffer to read from
      order - byte order
      fileMapper - required for reading version 2 (multi-file) indexed. May be null if you know you are reading a single-file column. Generally, this should only be null in tests, not production code.