Skip to content
This repository has been archived by the owner on May 17, 2023. It is now read-only.

Update 06_StructuredConcurrency.md #37

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Structured concurrency

_Coroutine scope_ is responsible for the structure and parent-child relationships between different coroutines.
We always start new coroutines inside a scope.
Coroutine builders, like `launch` and `async`, need to be started in some scope.
_Coroutine context_ stores additional technical information used to run a given coroutine,
like the dispatcher specifying the thread or threads the coroutine should be scheduled on.

Expand Down