MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / spanIterator

Method spanIterator

src/core/Span.java:395–401  ·  view source on GitHub ↗

Package private iterator method to access it as a Span.Iterator.

()

Source from the content-addressed store, hash-verified

393
394 /** Package private iterator method to access it as a Span.Iterator. */
395 Span.Iterator spanIterator() {
396 if (!sorted) {
397 Collections.sort(rows, new RowSeq.RowSeqComparator());
398 sorted = true;
399 }
400 return new Span.Iterator();
401 }
402
403 /** Iterator for {@link Span}s. */
404 final class Iterator implements SeekableView {

Callers 4

iteratorMethod · 0.95
downsamplerMethod · 0.95
createMethod · 0.45
createMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected