Class IntermediateRowParsingReader<T>

java.lang.Object
org.apache.druid.data.input.IntermediateRowParsingReader<T>
Type Parameters:
T - type of intermediate row. For example, it can be String for text formats.
All Implemented Interfaces:
InputEntityReader
Direct Known Subclasses:
JsonNodeReader, JsonReader, TextReader

public abstract class IntermediateRowParsingReader<T> extends Object implements InputEntityReader
InputEntityReader that parses bytes into some intermediate rows first, and then into InputRows. For example, DelimitedValueReader parses bytes into string lines, and then parses those lines into InputRows.