Is it bad to call a blocking function from inside ...
# announcements
c
Is it bad to call a blocking function from inside a coroutine?
z
If there’s a non-blocking version of the function, it’s better to use that. Otherwise, just make sure you’re on the IO dispatcher before calling blocking functions.
c
How is the IO dispatcher different from the default?
z
Read the kdocs on them, they explain the difference.
c
okay, thank you
n