public Iterator getExportIterator()

in modules/core/src/main/java/org/apache/fluo/recipes/core/export/ExportBucket.java [131:145]


  public Iterator<ExportEntry> getExportIterator(Bytes continueRow) {
    Span span;
    if (continueRow != null) {
      Span tmpSpan = Span.prefix(bucketRow);
      Span nextSpan = new Span(new RowColumn(continueRow, EXPORT_COL), true, tmpSpan.getEnd(),
          tmpSpan.isEndInclusive());
      span = nextSpan;
    } else {
      span = Span.prefix(bucketRow);
    }

    CellScanner scanner = ttx.scanner().over(span).fetch(EXPORT_COL).build();

    return new ExportIterator(scanner);
  }