use of io.druid.data.input.InputRow in project druid by druid-io.
the class IngestSegmentFirehose method nextRow.
@Override
public InputRow nextRow() {
final InputRow inputRow = rowYielder.get();
rowYielder = rowYielder.next(null);
return inputRow;
}
Aggregations