Coroutine - Definição do Glossário de CI/CD
Uma coroutine é uma rotina que pode pausar sua execução em pontos await/yield e retomar depois com seu estado local intacto; coroutines permitem que uma única thread intercale muitas operações em andamento de forma cooperativa, sustentando async/await e generators.
Guias relacionados
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…