You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To prevent timeouts, the library could provide an option to split requests that take a very long time into multiple requests and then return those results asynchronously using the new async iterators in C# 8.
The method should force the user to specify results per request within a reasonable range (1-50?) to give them some control over how many of their api requests they're using.
The text was updated successfully, but these errors were encountered:
Since the library targets .NET Standard 2.0 we can't use C# 8. This could still be a feature to fetch the data in batches, which has the drawback of taking longer time and more API requests but users will not encounter timeouts.
MarcusOtter
changed the title
Implement async iterators
Implement batch API calls
Dec 12, 2019
To prevent timeouts, the library could provide an option to split requests that take a very long time into multiple requests and then return those results asynchronously using the new async iterators in C# 8.The method should force the user to specify results per request within a reasonable range (1-50?) to give them some control over how many of their api requests they're using.
The text was updated successfully, but these errors were encountered: