<@U0MD6T132> When you use `launch` the coroutine i...
# coroutines
e
@alucard When you use
launch
the coroutine is scheduled for execution at some later point in time. However, in order not to miss events, we need consumer to be started immediately, that is what
CoroutineStart.UNDISPATCHED
does (if you faimilar with C#, that is what C#
async
does by default).