File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
polaris-core/src/main/java/org/apache/polaris/core/persistence/pagination Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 2424import java .util .ArrayList ;
2525import java .util .Iterator ;
2626import java .util .List ;
27+ import java .util .function .BooleanSupplier ;
2728import java .util .function .Function ;
2829import java .util .stream .Collectors ;
2930import java .util .stream .Stream ;
@@ -99,8 +100,8 @@ public List<T> items() {
99100
100101 /**
101102 * Returns a page token in encoded form suitable for returning to API clients. The string returned
102- * from this method is expected to be parsed by {@link PageToken#build(String, Integer)} when
103- * servicing the request for the next page of related data.
103+ * from this method is expected to be parsed by {@link PageToken#build(String, Integer,
104+ * BooleanSupplier)} when servicing the request for the next page of related data.
104105 */
105106 public @ Nullable String encodedResponseToken () {
106107 return PageTokenUtil .encodePageToken (request , nextToken );
You can’t perform that action at this time.
0 commit comments