Cancellation Token - CI/CD用語集の定義
Cancellation token は、非同期または長時間実行される操作を通して渡されるオブジェクトで、呼び出し側がこれを作動させて協調的なキャンセルを要求します。行儀の良いコードは中断ポイントでこれをチェックし、最後まで実行するのではなく速やかに中止してリソースを解放します。
関連ガイド
Structured Concurrency - CI/CD Glossary DefinitionStructured concurrency scopes concurrent tasks to a block so they all finish or cancel before it exits, makin…
Deadline Propagation - CI/CD Glossary DefinitionDeadline propagation passes a request’s remaining time budget through every downstream call, so the whole cha…
Bulkhead - CI/CD Glossary DefinitionThe bulkhead pattern isolates resources into separate pools per dependency, so one overloaded dependency can’…