Async Runtime - CI/CD用語集の定義
Async runtime(Tokio、libuv、Node の event loop)は、中断された非同期タスクをポーリングしてワーカースレッドにスケジュールし、ノンブロッキング I/O とタイマーを統合する仕組みであり、async/await コードの実行に必要な実行コンテキストを供給します。
関連ガイド
Event Loop - CI/CD Glossary DefinitionAn event loop repeatedly waits for events - I/O readiness, timers, messages - and dispatches their handlers o…
Reactor Pattern - CI/CD Glossary DefinitionThe reactor pattern demultiplexes incoming I/O events and dispatches each to a registered handler, the design…
Work Queue - CI/CD Glossary DefinitionA work queue holds pending tasks that worker threads pull and execute, decoupling submission from execution a…