I understand that `suspend fun`s can be suspended....
# coroutines
d
I understand that `suspend fun`s can be suspended... what happens when it (the suspend fun) calls a non-suspend
fun
? can the code in that
fun
also be suspended?
s
No. Only
suspend
funs can call other suspending functions (be suspended)
👍 1
d
great, just wanted to make sure
s
Non-suspend funs can be blocking, though, but not suspending.
d
sure blocking is ok