Interface IPool<Worker, Data, Response>

Contract definition for a poolifier pool.

Type Parameters

  • Worker extends IWorker

    Type of worker which manages this pool.

  • Data = unknown

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

  • Response = unknown

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

Hierarchy

  • IPool

Implemented by

Properties

destroy: (() => Promise<void>)

Type declaration

    • (): Promise<void>
    • Shutdowns every current worker in this pool.

      Returns Promise<void>

emitter?: PoolEmitter

Emitter on which events can be listened to.

Events that can currently be listened to:

  • 'full': Emitted when the pool is dynamic and full.
  • 'busy': Emitted when the pool is busy.
enableTasksQueue: ((enable, tasksQueueOptions?) => void)

Type declaration

    • (enable, tasksQueueOptions?): void
    • Enables/disables the worker tasks queue in this pool.

      Parameters

      • enable: boolean

        Whether to enable or disable the worker tasks queue.

      • Optional tasksQueueOptions: TasksQueueOptions

        The worker tasks queue options.

      Returns void

execute: ((data?) => Promise<Response>)

Type declaration

    • (data?): Promise<Response>
    • Executes the function specified in the worker constructor with the task data input parameter.

      Parameters

      • Optional data: Data

        The task input data for the specified worker function. This can only be serializable data.

      Returns Promise<Response>

      Promise that will be fulfilled when the task is completed.

setTasksQueueOptions: ((tasksQueueOptions) => void)

Type declaration

    • (tasksQueueOptions): void
    • Sets the worker tasks queue options in this pool.

      Parameters

      Returns void

setWorkerChoiceStrategy: ((workerChoiceStrategy, workerChoiceStrategyOptions?) => void)

Type declaration

    • (workerChoiceStrategy, workerChoiceStrategyOptions?): void
    • Sets the worker choice strategy in this pool.

      Parameters

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

        The worker choice strategy.

      • Optional workerChoiceStrategyOptions: WorkerChoiceStrategyOptions

        The worker choice strategy options.

      Returns void

setWorkerChoiceStrategyOptions: ((workerChoiceStrategyOptions) => void)

Type declaration

    • (workerChoiceStrategyOptions): void
    • Sets the worker choice strategy options in this pool.

      Parameters

      Returns void

type: PoolType

Pool type.

If it is 'dynamic', it provides the max property.

workerNodes: WorkerNode<Worker, Data>[]

Pool worker nodes.

Generated using TypeDoc