https://gitlab.com/tezos/tezos
Raw File
Tip revision: 509b84442a6c6c76b68c72a9567a50a704a7eed8 authored by Emma Turner on 26 March 2024, 11:52:10 UTC
maybe this works for mac? not for linux though
Tip revision: 509b844
tezos_workers.mld
{0 Workers: Local, Lwt-based event-loops}

The Workers library provides helpers for a component akin to agents or actors.
More concretely, you can use this library to instantiate a worker group, from
which you can spawn one or more workers, to which you can send tasks. Each
worker maintains a queue of tasks (called requests) and schedules them according
to its internal event-loop.


{1 [Worker]}

{!modules:
Tezos_workers.Worker
}
back to top