WorkerPool manages a pool of workers to efficiently handle multiple tasks in parallel. It allows for dynamic worker creation, task queuing, and managing worker utilization.

Deepkolos / https://github.com/deepkolos

Constructors

Methods

  • Finds and returns an idle worker by checking the worker status.

    Returns number

    The index of an idle worker, or -1 if no idle workers are available.

  • Initializes a worker by creating it and adding an event listener for messages.

    Parameters

    • workerId: number

      The ID of the worker to initialize.

    Returns void

  • Handles messages received from workers.

    Parameters

    • workerId: number

      The ID of the worker sending the message.

    • msg: string

      The message received from the worker.

    Returns void

  • Terminates all workers, clears the resolve functions, and resets the pool status. This will effectively destroy the WorkerPool and free up any resources used.

    Returns void

  • Posts a message to an available worker. If no worker is available, the task is queued.

    Parameters

    • msg: any

      The message to send to the worker.

    • transfer: any

      Any transferable objects to send with the message.

    Returns Promise<unknown>

    A promise that resolves when the worker finishes processing the message.

  • Sets the worker creator function, which is used to create new workers.

    Parameters

    • workerCreator: any

      The function that creates a new worker.

    Returns void