Package org.apache.druid.data.input
Interface InputEntityReader
-
- All Known Implementing Classes:
DelimitedValueReader,IntermediateRowParsingReader,JsonLineReader,JsonNodeReader,JsonReader,RegexReader,TextReader,TextReader.Bytes,TextReader.Strings,TransformingInputEntityReader
public interface InputEntityReaderInputEntityReader knows how to parse data intoInputRow. This class is stateful and a new InputEntityReader should be created perInputEntity. Not thread-safe.- See Also:
IntermediateRowParsingReader,TextReader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CloseableIterator<InputRow>read()CloseableIterator<InputRowListPlusRawValues>sample()
-
-
-
Method Detail
-
read
CloseableIterator<InputRow> read() throws IOException
- Throws:
IOException
-
sample
CloseableIterator<InputRowListPlusRawValues> sample() throws IOException
- Throws:
IOException
-
-