elizarov
06/12/2017, 9:00 PMisDispatchNeeded
gives an answer: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.experimental/-coroutine-dispatcher/is-dispatch-needed.html There are lots of good explanations on the web as to why in JS world it is a standard to always schedule execution of async operations for later, as opposed to executing them immediately on stack (in short, it causes lots of subtle problems down the road that do not worth minor performance improvement it gives)groostav
06/15/2017, 4:59 AMbut this subtle and context-sensitive difference in behavior makes the resulting async code harder to debug.
It leads to recommendations like "use yield if you need to ..."I'm genuinely curious, can you link me to this? I've never heard this said. And my counter-example is that if we have an eager-check then I can take UI code, written with `suspend fun`s, which expects to call expensive services that are instead mocked out with fake fast-running stubs, and have everything run sequentially. This is a big win for testing and debug ability. Consider the stack-trace on in-line-dispatched jobs.