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
runBlocking utilizes EmptyCoroutineContext by default meaning that under the hood Dispatchers.Default is being used. This is a bottle neck and should not be a thing. Need to pass in as a constructor argument Dispatchers.IO to all runBlocking function calls.
The text was updated successfully, but these errors were encountered:
runBlocking
utilizesEmptyCoroutineContext
by default meaning that under the hoodDispatchers.Default
is being used. This is a bottle neck and should not be a thing. Need to pass in as a constructor argumentDispatchers.IO
to allrunBlocking
function calls.The text was updated successfully, but these errors were encountered: