Skip to content

Commit

Permalink
chore: Add getPageSize() to QueryPaginator (#1987)
Browse files Browse the repository at this point in the history
* add getPageSize() to QueryPaginator

* fix build

* fix lint

* add javadoc
  • Loading branch information
ron-gal committed Nov 2, 2023
1 parent 1425ac5 commit 42a7e36
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -407,6 +407,12 @@ public boolean advance(@Nonnull ByteString lastSeenRowKey) {
query.builder.setRows(remaining);
return true;
}

/** Get the page size of the current Pagniator. For internal use only. */
@InternalApi
public int getPageSize() {
return this.pageSize;
}
}

@Override
Expand Down

0 comments on commit 42a7e36

Please sign in to comment.