Structured Concurrency - CI/CD Glossary Definition
Structured concurrency binds the lifetime of spawned tasks to a lexical scope: the scope does not return until every child task has finished or been cancelled, so leaks, orphaned tasks, and unhandled errors become impossible by construction.
Related guides
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…