https://gitlab.com/tezos/tezos
Raw File
Tip revision: 25957efd507827747fa651fb3b7f4e9d95c01faf authored by Ole Krüger on 21 February 2024, 13:52:11 UTC
RISC-V: Load ELF programs
Tip revision: 25957ef
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