package tezos-base

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Tezos_base.Worker_intfSource

Parameters to build a worker group

Sourcemodule type NAME = sig ... end

The name of the group of workers corresponding to an instantiation of Make, as well as the name of each worker in that group.

Sourcemodule type VIEW = sig ... end
Sourcemodule type EVENT = sig ... end

Events that are used for logging and introspection. Events are pretty printed immediately in the log, and stored in the worker's event backlog for introspection.

Sourcemodule type REQUEST = sig ... end

The type of messages that are fed to the worker's event loop.

Sourcemodule type TYPES = sig ... end

The (imperative) state of the event loop.

Sourcemodule type LOGGER = sig ... end