thenByLastProcessedSequence method

QueryBuilder<ProjectionCheckpoint, ProjectionCheckpoint, QAfterSortBy> thenByLastProcessedSequence()

Implementation

QueryBuilder<ProjectionCheckpoint, ProjectionCheckpoint, QAfterSortBy>
    thenByLastProcessedSequence() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'lastProcessedSequence', Sort.asc);
  });
}