Class BooleanChunkReader
java.lang.Object
io.deephaven.extensions.barrage.chunk.BaseChunkReader<WritableByteChunk<Values>>
io.deephaven.extensions.barrage.chunk.BooleanChunkReader
- All Implemented Interfaces:
ChunkReader<WritableByteChunk<Values>>
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class io.deephaven.extensions.barrage.chunk.BaseChunkReader
BaseChunkReader.ChunkTransformer<READ_CHUNK_TYPE extends Chunk<Values>,DEST_CHUNK_TYPE extends WritableChunk<Values>> Nested classes/interfaces inherited from interface io.deephaven.extensions.barrage.chunk.ChunkReader
ChunkReader.Factory -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionreadChunk(@NotNull Iterator<ChunkWriter.FieldNodeInfo> fieldNodeIter, PrimitiveIterator.OfLong bufferInfoIter, @NotNull DataInput is, @Nullable WritableChunk<Values> outChunk, int outOffset, int totalRows) Reads the given DataInput to extract the next Arrow buffer as a Deephaven Chunk.<T> ChunkReader<WritableObjectChunk<T,Values>> Methods inherited from class io.deephaven.extensions.barrage.chunk.BaseChunkReader
castOrCreateChunk, getChunkTypeFor, readValidityBufferMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.deephaven.extensions.barrage.chunk.ChunkReader
readChunk
-
Constructor Details
-
BooleanChunkReader
public BooleanChunkReader() -
BooleanChunkReader
-
-
Method Details
-
transform
-
readChunk
public WritableByteChunk<Values> readChunk(@NotNull @NotNull Iterator<ChunkWriter.FieldNodeInfo> fieldNodeIter, @NotNull PrimitiveIterator.OfLong bufferInfoIter, @NotNull @NotNull DataInput is, @Nullable @Nullable WritableChunk<Values> outChunk, int outOffset, int totalRows) throws IOException Description copied from interface:ChunkReaderReads the given DataInput to extract the next Arrow buffer as a Deephaven Chunk.- Parameters:
fieldNodeIter- iterator to read fields from the streambufferInfoIter- iterator to read buffers from the streamis- input stream containing buffers to be readoutChunk- chunk to write tooutOffset- offset within the outChunk to begin writingtotalRows- total rows to write to the outChunk- Returns:
- a Chunk containing the data from the stream
- Throws:
IOException- if an error occurred while reading the stream
-