fresh-borzoni opened a new issue, #424:
URL: https://github.com/apache/fluss-rust/issues/424

   ### Search before asking
   
   - [x] I searched in the 
[issues](https://github.com/apache/fluss-rust/issues) and found nothing similar.
   
   
   ### Description
   
   LogScanner should implement __aiter__/__anext__ so users can write:
   ```python
     async for record in scanner:
         process(record)
   ```
     Instead of the current manual poll loop:
   ```python
     while True:
         records = scanner.poll(1000)
         for record in records:
             process(record)
   ```
   
   Internally, buffer records from poll() and yield one at a time. Default to 
continuous streaming, matching Kafka consumer semantics.
   
   ### Willingness to contribute
   
   - [ ] I'm willing to submit a PR!


-- 
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