Alberne commented on issue #9474:
URL: https://github.com/apache/seatunnel/issues/9474#issuecomment-2987208430

    1. Page Number Pagination
    ```
   processPageMap(
                       this.httpParameter.getParams(),
                       pageField,
                       pageValue.toString(),
                       usePlaceholderReplacement);
   ```
   
    2. Cursor-Based Pagination
    ```
     processPageMap(
                       this.httpParameter.getParams(),
                       pageInfo.getPageCursorFieldName(),
                       pageInfo.getCursor(),
                       usePlaceholderReplacement);
   ```
   The above code logic exists simultaneously within the updateRequestParam 
function, but in practice only one pagination method can be selected, Page 
Number Pagination or Cursor-Based Pagination .


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to