This just came across my mind: Is there a tool to ...
# coroutines
j
This just came across my mind: Is there a tool to visualize the coroutine scope parent and child structure in the project?
t
At runtime, you can dump the state of a coroutine and its children using
DebugProbe
. It is available in the
kotlinx-coroutines-debug
dependency.
👍 1
j
Thank you, will look into it.