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
We are fetching IPO calendars in IO context for sure but we are collecting them in same coroutine sequentially given flows are sequential.
We can improve this using different operators like,
flowOn()
buffer()
catch{}
Let's explore this and enhance the execution to reduce overall execution time.
The text was updated successfully, but these errors were encountered:
We are fetching IPO calendars in IO context for sure but we are collecting them in same coroutine sequentially given flows are sequential.
We can improve this using different operators like,
Let's explore this and enhance the execution to reduce overall execution time.
The text was updated successfully, but these errors were encountered: