Event Loop - CI/CD用語集の定義
Event loop は、準備完了イベント(ソケット、タイマー、コールバック)を待ってブロックし、それぞれを単一のスレッド上で順にハンドラへディスパッチする制御構造です。これは Node.js とブラウザの並行性、そして reactor ベースの非同期 I/O の大半を支えています。
関連ガイド
Reactor Pattern - CI/CD Glossary DefinitionThe reactor pattern demultiplexes incoming I/O events and dispatches each to a registered handler, the design…
Async Runtime - CI/CD Glossary DefinitionAn async runtime schedules asynchronous tasks to completion on a thread pool, providing the event loop, timer…
Work Queue - CI/CD Glossary DefinitionA work queue holds pending tasks that worker threads pull and execute, decoupling submission from execution a…