use of com.srotya.sidewinder.core.storage.SeriesOutputv2 in project sidewinder by srotya.
the class GrafanaOutputv2Iterator method next.
@Override
public GrafanaOutputv2 next() {
SeriesOutputv2 entry = iterator.next();
GrafanaOutputv2 tar = new GrafanaOutputv2(entry.toString(), entry.isFp());
DataPointIterator iterator = entry.getIterator();
if (iterator != null) {
tar.setPointsIterator(iterator);
}
return tar;
}
Aggregations