Coroutine Job
graph TD;
subgraph CoroutineScope
A[coroutineContext] -->|Has a| B(Parent Job)
A -->|Has a| C[Dispatcher]
end
B -->|Parent of| J1[Child Job 1]
B -->|Parent of| J2[Child Job 2]
B -->|Parent of| J3[Child Job 3]
J1 -->|Manages| D1[Coroutine 1]
J2 -->|Manages| D2[Coroutine 2]
J3 -->|Manages| D3[Coroutine 3]
D1 -->|Runs| E1[Task 1]
D2 -->|Runs| E2[Task 2]
D3 -->|Runs| E3[Task 3]
classDef blue fill:#3b82f6,stroke:#ffffff,stroke-width:2px;
classDef green fill:#10b981,stroke:#ffffff,stroke-width:2px;
classDef red fill:#ef4444,stroke:#ffffff,stroke-width:2px;
class A blue;
class B green;
class D1,D2,D3 red;
Backlinks