Coroutine - CI/CD用語集の定義
Coroutine は、await/yield の地点で実行を一時停止し、後でローカル状態を保ったまま再開できるルーチンです。coroutine により、単一のスレッドが多数の進行中の操作を協調的にインターリーブでき、async/await と generator を支えます。
関連ガイド
Async Runtime - CI/CD Glossary DefinitionAn async runtime schedules asynchronous tasks to completion on a thread pool, providing the event loop, timer…
Fiber - CI/CD Glossary DefinitionA fiber is a lightweight, cooperatively scheduled thread of execution managed in user space, letting one OS t…
Structured Concurrency - CI/CD Glossary DefinitionStructured concurrency scopes concurrent tasks to a block so they all finish or cancel before it exits, makin…