Xuanwo commented on code in PR #3593: URL: https://github.com/apache/incubator-opendal/pull/3593#discussion_r1395425242
########## core/src/docs/upgrade.md: ########## @@ -11,6 +11,19 @@ Users will need to change the following usage: `delimiter` other than `""` and `"/"` is not supported anymore. +## Raw API + +### Lister Align + +We changed our internal `lister` implementation to align with the `list` public API for better performance and readability. + +- trait `Page` => `List` +- struct `Pager` => `Lister` +- trait `BlockingPage` => `BlockingList` +- struct `BlockingPager` => `BlockingLister` + +Every call to `next` will return an entry instead a page of entries. Also, we changed our async list api into poll based instead of `async_trait`. Review Comment: Yes, we can remove them. Please allow me to do it in another PR so that we don't block here. -- 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]
