Join Slack
Communities
Powered by
<@U33S3CR1A> `get` is a blocking call. it will blo...
# coroutines
o
okkero
01/26/2017, 11:33 AM
@rrader
get
is a blocking call. it will block the current thread if it has to wait for a result.
await
is a suspending call. It might suspend the current coroutine, but it will not block the current thread.
👍 1
Open in Slack
Previous
Next