Class FixedClusterPool<Data, Response>

A cluster pool with a fixed number of workers.

It is possible to perform tasks in sync or asynchronous mode as you prefer.

This pool selects the workers in a round robin fashion.

Author

Christopher Quadflieg

Since

2.0.0

Type Parameters

  • Data = unknown

    Type of data sent to the worker. This can only be serializable data.

  • Response = unknown

    Type of response of execution. This can only be serializable data.

Hierarchy

Constructors

  • Constructs a new poolifier fixed cluster pool.

    Type Parameters

    • Data = unknown

    • Response = unknown

    Parameters

    • numberOfWorkers: number

      Number of workers for this pool.

    • filePath: string

      Path to an implementation of a ClusterWorker file, which can be relative or absolute.

    • opts: ClusterPoolOptions = {}

      Options for this fixed cluster pool.

    Returns FixedClusterPool<Data, Response>

Properties

emitter?: PoolEmitter

{@inheritDoc}

filePath: string

Path to the worker-file.

numberOfWorkers: number

Number of workers that this pool should manage.

Options for this fixed cluster pool.

promiseResponseMap: Map<string, PromiseResponseWrapper<Worker, Response>> = ...

The promise response map.

  • key: The message id of each submitted task.
  • value: An object that contains the worker, the promise resolve and reject callbacks.

When we receive a message from the worker we get a map entry with the promise resolve/reject bound to the message.

workerChoiceStrategyContext: WorkerChoiceStrategyContext<Worker, Data, Response>

Worker choice strategy context referencing a worker choice algorithm implementation.

Default to a round robin algorithm.

workers: WorkerType<Worker>[] = []

{@inheritDoc}

Accessors

  • get numberOfRunningTasks(): number
  • Number of tasks concurrently running in the pool.

    Returns number

Methods

  • Hook executed after the worker task promise resolution. Can be overridden.

    Parameters

    • worker: Worker

      The worker.

    • message: MessageValue<Response, unknown>

      The received message.

    Returns void

  • {@inheritDoc}

    Parameters

    • worker: Worker

    Returns void

  • Hook executed before the worker task promise resolution. Can be overridden.

    Parameters

    • workerKey: number

      The worker key.

    Returns void

  • Chooses a worker for the next task.

    The default uses a round robin algorithm to distribute the load.

    Returns

    [worker key, worker].

    Returns [number, Worker]

  • Creates a new worker for this pool and sets it up completely.

    Returns

    New, completely set up worker.

    Returns Worker

  • {@inheritDoc}

    Parameters

    • worker: Worker

    Returns void

  • {@inheritDoc}

    Parameters

    • data: Data

    Returns Promise<Response>

  • {@inheritDoc}

    Type Parameters

    • Message

    Parameters

    • worker: Worker
    • listener: ((message: MessageValue<Message, unknown>) => void)
        • (message: MessageValue<Message, unknown>): void
        • Parameters

          • message: MessageValue<Message, unknown>

          Returns void

    Returns void

  • Removes the given worker from the pool.

    Parameters

    • worker: Worker

      The worker that will be removed.

    Returns void

  • {@inheritDoc}

    Parameters

    • worker: Worker
    • message: MessageValue<Data, unknown>

    Returns void

  • {@inheritDoc}

    Parameters

    • workerChoiceStrategy: "ROUND_ROBIN" | "LESS_USED" | "LESS_BUSY" | "FAIR_SHARE" | "WEIGHTED_ROUND_ROBIN"

    Returns void

  • This function is the listener registered for each worker.

    Returns

    The listener function to execute when a message is received from a worker.

    Returns ((message: MessageValue<Response, unknown>) => void)

      • (message: MessageValue<Response, unknown>): void
      • This function is the listener registered for each worker.

        Returns

        The listener function to execute when a message is received from a worker.

        Parameters

        • message: MessageValue<Response, unknown>

        Returns void

Generated using TypeDoc