IAsyncEnumerable<TItem> Continuation Token Paging Implementation #197
Labels
help wanted
Extra attention is needed
up-for-grabs 🙏🏽
Happy to consider a pull review to address this issue
This library currently has a few paging implementations. None of which yet support streaming. It would be great to add one that returns an
IAsyncEnumerable<TItem>
for scenarios where data would benefit from being streamed. This is a great fit for use with continuation tokens.A possible API might be something like below:
This could potentially allow a caller to either get all the results returned by the
predicate
or specify a limit of how many items they would like back.The text was updated successfully, but these errors were encountered: