Iterates through all paginators sequentially, yielding one item from each
in turn (round-robin). When one paginator exhausts, it is removed from the
rotation and the remaining paginators continue until all are done.
Warning: Each paginator gets equal turns regardless of response speed.
If one paginator is significantly slower than others, items from faster
paginators will wait. For use cases requiring fairness based on data
availability, consider using separate iterators instead.
Merge multiple paginators in round-robin order.
Iterates through all paginators sequentially, yielding one item from each in turn (round-robin). When one paginator exhausts, it is removed from the rotation and the remaining paginators continue until all are done.
If one paginator is significantly slower than others, items from faster paginators will wait. For use cases requiring fairness based on data availability, consider using separate iterators instead.