# Workers The workers library: an event-driven task management abstraction somewhat akin to actors. ## API Documentation The API documentation is available online: ## Overview The workers library provides local event loops so that different components of the Octez software can be somewhat isolated. Each workers maintains its own queue of tasks, which allows for more control over scheduling than with the global Lwt scheduler. ## Implementation Details The library is made of a single compilation unit (`worker.ml`/`worker.mli`). The bulk of it consists of types and signatures declaration, with a single functor using them.