Coroutine - CI/CD Glossary Definition
A coroutine is a routine that can pause its execution at await/yield points and later resume with its local state intact; coroutines let a single thread interleave many in-flight operations cooperatively, powering async/await and generators.
Related guides
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…