You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently job.parentJob is not exposed, making it harder to build a parent-child relational job graph when debug
according to this #3198 it should be fairly easy(and safe?) to expose that
(kotlinx.coroutines.JobSupport.parentHandle as ChildHandle).parent
The text was updated successfully, but these errors were encountered:
* The API is crucial for debugger extension and deadlock detection
* It enables allows more fluent coroutines hierarchy inspection, e.g. capability to build a list of roots and procrss them top-bottom separately
Fixes#3201
currently
job.parentJob
is not exposed, making it harder to build a parent-child relational job graph when debugaccording to this #3198 it should be fairly easy(and safe?) to expose that
(kotlinx.coroutines.JobSupport.parentHandle as ChildHandle).parent
The text was updated successfully, but these errors were encountered: