https://kotlinlang.org logo
#coroutines
Title
# coroutines
j

JP

03/16/2020, 12:31 PM
This just came across my mind: Is there a tool to visualize the coroutine scope parent and child structure in the project?
t

tseisel

03/16/2020, 1:32 PM
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

JP

03/16/2020, 2:07 PM
Thank you, will look into it.
11 Views