forEach abstract method

void forEach(
  1. LineDataSourceLineDataProcessor processor
)

Iterates through all the lines from the data source and passes them to the given processor, one by one.

The processor can update the line data. The iteration stops after all lines have been processed or the processor returns false from the process call.

  • processor Line processor.

Implementation

void forEach(LineDataSourceLineDataProcessor processor);