Structured Concurrency - CI/CD用語集の定義
Structured concurrency は、生成されたタスクの寿命をレキシカルスコープに束縛します。スコープはすべての子タスクが完了またはキャンセルされるまでリターンしないため、リーク、孤立したタスク、未処理のエラーが構造的に発生しなくなります。
関連ガイド
Cancellation Token - CI/CD Glossary DefinitionA cancellation token is a signal passed into async operations so a caller can cooperatively ask them to stop,…
Green Thread - CI/CD Glossary DefinitionA green thread is a thread scheduled by a language runtime instead of the OS, so a program runs millions chea…
Deadline Propagation - CI/CD Glossary DefinitionDeadline propagation passes a request’s remaining time budget through every downstream call, so the whole cha…