backup-core/src/main/java/org/apache/iotdb/backup/core/ImportStarter.java [123:130]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Long finishedRowNum() {
    AtomicLong result = new AtomicLong();
    pipeSinkList.forEach(
        pipesink -> {
          result.addAndGet(pipesink.finishedRowNum());
        });
    return result.get();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



backup-core/src/main/java/org/apache/iotdb/backup/core/ExportStarter.java [132:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Long finishedRowNum() {
    AtomicLong result = new AtomicLong();
    pipeSinkList.forEach(
        pipesink -> {
          result.addAndGet(pipesink.finishedRowNum());
        });
    return result.get();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



