I faced with a problem when using runBlocking and ...
# coroutines
a
s
That’s expected behaviour when you use
runBlocking
, because
runBlocking
won’t return until all of its child jobs have completed
In other words, the
numbers
property won’t return a value until the entire flow has terminated
I responded to the StackOverflow thread also 👍