forEach abstract method

void forEach(
  1. PointDataSourcePointDataProcessor processor
)

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

The processor can update the point data.

The iteration stops after all points have been processed or the processor returns false from the process call.

  • processor Point data processor.

Implementation

void forEach(PointDataSourcePointDataProcessor processor);