X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=docs%2Fclasses%2FFixedClusterPool.html;h=a206c71efbfc60a0aec7c21c6cc31ed391d65a4b;hb=0e16e60a89029abe61cda7ba293c036298cced05;hp=e49051932e9161ea55991180b3d392b5c1b2baaf;hpb=e604957d6ec7c137a3588de2ebbc9c83c0f634ba;p=poolifier.git diff --git a/docs/classes/FixedClusterPool.html b/docs/classes/FixedClusterPool.html index e4905193..1280f4cc 100644 --- a/docs/classes/FixedClusterPool.html +++ b/docs/classes/FixedClusterPool.html @@ -1,4 +1,4 @@ -FixedClusterPool | poolifier
+FixedClusterPool | poolifier - v2.6.26
  • Preparing search index...
  • -
  • The search index is not available
poolifier
+
  • The search index is not available
  • poolifier - v2.6.26
    -
    +
    • poolifier
    • @@ -17,34 +17,35 @@

      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

    +
    +
    +

    Author

    Christopher Quadflieg

    -

    Since

    2.0.0

    +

    Since

    2.0.0

    -
    +

    Type Parameters

    -
      +
      • -

        Data = unknown

        -

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

        -
      • +

        Data = unknown

        +

        Type of data sent to the worker. This can only be structured-cloneable data.

        +
        +
      • -

        Response = unknown

        -

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

        -
    +

    Response = unknown

    +

    Type of execution response. This can only be structured-cloneable data.

    +
    +

    Hierarchy

    @@ -52,492 +53,793 @@

    Constructors

    -
    - -
      - +
      + +
        +
      • Constructs a new poolifier fixed cluster pool.

        -
        +

        Type Parameters

        -
          +
          • -

            Data = unknown

          • +

            Data = unknown

          • -

            Response = unknown

        +

        Response = unknown

      Parameters

      • -
        numberOfWorkers: number
        +
        numberOfWorkers: number

        Number of workers for this pool.

        -
      • +
      +
    • -
      filePath: string
      +
      filePath: string

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

      -
    • +
    +
  • -
    opts: ClusterPoolOptions = {}
    +
    opts: ClusterPoolOptions = {}

    Options for this fixed cluster pool.

    -
  • -

    Returns FixedClusterPool<Data, Response>

    +
    +

    Returns FixedClusterPool<Data, Response>

    +
    +
  • Defined in src/pools/cluster/fixed.ts:44
  • Properties

    -
    - -
    emitter?: PoolEmitter
    -

    {@inheritDoc}

    -
    -
    - -
    filePath: string
    -

    Path to the worker-file.

    -
    -
    - -
    numberOfWorkers: number
    +
    + +
    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 the number of workers created has reached the maximum size expected.
    • +
    • 'ready': Emitted when the number of workers created in the pool has reached the minimum size expected and are ready.
    • +
    • 'busy': Emitted when the number of workers created in the pool has reached the maximum size expected and are executing at least one task.
    • +
    • 'error': Emitted when an uncaught error occurs.
    • +
    • 'taskError': Emitted when an error occurs while executing a task.
    • +
    +
    +
    +
    + +
    filePath: string
    +

    Path to the worker file.

    +
    +
    +
    + +
    numberOfWorkers: number

    Number of workers that this pool should manage.

    -
    -
    - - +
  • Defined in src/pools/abstract-pool.ts:108
  • +
    + +

    Options for this fixed cluster pool.

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

    The promise response map.

    +
  • Defined in src/pools/cluster/fixed.ts:47
  • +
    + +
    promiseResponseMap: Map<string, PromiseResponseWrapper<Response>> = ...
    +

    The task execution response promise map.

    • key: The message id of each submitted task.
    • -
    • value: An object that contains the worker, the promise resolve and reject callbacks.
    • +
    • value: An object that contains the worker, the execution response 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>
    +

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

    + +
    +
    + +
    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}

    -
    + +
    +
    + +
    workerNodes: IWorkerNode<Worker, Data>[] = []
    +

    Pool worker nodes.

    +
    +

    Accessors

    -
    - -
    +
    + +
    • get full(): boolean
    • -

      {@inheritDoc}

      +

      Whether the pool is full or not.

      +

      The pool filling boolean status.

      -

      Returns boolean

    -
    - -
    +
    + +
      +
    • get info(): PoolInfo
    • -

      Number of tasks concurrently running in the pool.

      +

      Pool information.

      -

      Returns number

    -
    - -
    +
    + +
    +
    + +
    +
    + +
      +
    • get ready(): boolean
    • +
    • +

      The pool readiness boolean status.

      +
      +

      Returns boolean

      +
    +
    + +
      +
    • get type(): "fixed" | "dynamic"
    • -

      {@inheritDoc}

      +

      The pool type.

      +

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

      -

      Returns PoolType

    +
  • Defined in src/pools/cluster/fixed.ts:110
  • +
    + +
    +
    + +

    Methods

    -
    - -
      - +
      + +
        +
      • -

        Hook executed after the worker task promise resolution. +

        Hook executed after the worker task execution. Can be overridden.

        Parameters

        • -
          worker: Worker
          -

          The worker.

          -
        • +
          workerNodeKey: number
          +

          The worker node key.

          +
          +
        • -
          message: MessageValue<Response, unknown>
          +
          message: MessageValue<Response, unknown>

          The received message.

          -
        -

        Returns void

      -
      - -
        - + +
      +

      Returns void

      +
    +
    + +
      +
    • -

      {@inheritDoc}

      +

      Method hooked up after a worker node has been newly created. +Can be overridden.

      Parameters

      • -
        worker: Worker
      -

      Returns void

    -
    - -
      - +
      workerNodeKey: number
      +

      The newly created worker node key.

      +
      +
    +

    Returns void

    +
    +
    + +
      +
    • -

      Hook executed before the worker task promise resolution. +

      Hook executed before the worker task execution. Can be overridden.

      Parameters

      • -
        workerKey: number
        -

        The worker key.

        -
      +
      workerNodeKey: number
      +

      The worker node key.

      +
      +
    • +
    • +
      task: Task<Data>
      +

      The task to execute.

      +
      +
    +

    Returns void

    +
    +
    + +
    -
    - -
    +
    + +
      +
    • -

      Chooses a worker for the next task.

      -

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

      +

      Creates a new, completely set up dynamic worker node.

      +
      +

      Returns number

      New, completely set up dynamic worker node key.

      -

      Returns

      [worker key, worker].

      +
    +
    + +
      + +
    • +

      Creates a new, completely set up worker node.

      -

      Returns [number, Worker]

    -
    - -
    +
    + +
      +
    • -

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

      +

      Creates a new worker.

      +
      +

      Returns Worker

      Newly created worker.

      -

      Returns

      New, completely set up worker.

      +
    +
    + +
      + +
    • +

      Terminates all workers in this pool.

      -

      Returns Worker

    -
    - -
    +
    + +
      +
    • -

      {@inheritDoc}

      +

      Terminates the worker node given its worker node key.

      -

      Returns Worker

    -
    - -
    +
    + +
      +
    • -

      {@inheritDoc}

      +

      Enables/disables the worker tasks queue in this pool.

      -

      Returns Promise<void>

    -
    - -
    +
    + +
      +
    • -

      {@inheritDoc}

      +

      Executes the specified function in the worker constructor with the task data input parameter.

      Parameters

      • -
        worker: Worker
      +
      Optional data: Data
      +

      The optional task input data for the specified task function. This can only be structured-cloneable data.

      +
      +
    • +
    • +
      Optional name: string
      +

      The optional name of the task function to execute. If not specified, the default task function will be executed.

      +
      +
    • +
    • +
      Optional transferList: TransferListItem[]
      +

      An optional array of transferable objects to transfer ownership of. Ownership of the transferred objects is given to the pool's worker_threads worker and they should not be used in the main thread afterwards.

      +
      +
    +

    Returns Promise<Response>

    Promise that will be fulfilled when the task is completed.

    + +
    +
    + +
    -
    - -
    +
    + +
      +
    • -

      {@inheritDoc}

      +

      Gets the worker information given its worker node key.

      Parameters

      • -
        data: Data
      -

      Returns Promise<Response>

    -
    - -
      - +
      workerNodeKey: number
      +

      The worker node key.

      +
      +
    +

    Returns WorkerInfo

    The worker information.

    + +
    +
    + +
      +
    • -

      {@inheritDoc}

      +

      Whether worker nodes are executing concurrently their tasks quota or not.

      -

      Returns number

    -
    - -
    +
    + +
    -
    - -
    +
    + +
      +
    • -

      {@inheritDoc}

      +

      Lists the names of task function available in this pool.

      -

      Returns boolean

    -
    - -
    +
    + +
      +
    • -

      {@inheritDoc}

      +

      Registers a listener callback on the worker given its worker node key.

      -
      +

      Type Parameters

      -
        +
        • -

          Message

      +

      Message

    Parameters

    • -
      worker: Worker
    • +
      workerNodeKey: number
      +

      The worker node key.

      +
      +
    • -
      listener: ((message: MessageValue<Message, unknown>) => void)
      +
      listener: ((message) => void)
      +

      The message listener callback.

      +
      +
      • -
          -
        • (message: MessageValue<Message, unknown>): void
        • +
            +
          • (message): void
          • Parameters

            • -
              message: MessageValue<Message, unknown>
            +
            message: MessageValue<Message, unknown>

    Returns void

    -

    Returns void

    -
    - -
    +
    + +
    +
    + +
    -
    - - +

    Returns void

    +
    +
    + +
    -
    - - +

    Returns void

    +
    +
    + +
    -
    - - +

    Returns void

    +
    +
    + +
    -
    - -
    +
    + +
    +
    + +
    +
    + + +
    - +
    +
    +
    +

    On This Page

    - -
    +
  • constructor
  • +
  • emitter
  • +
  • filePath
  • +
  • numberOfWorkers
  • +
  • opts
  • +
  • promiseResponseMap
  • +
  • workerChoiceStrategyContext
  • +
  • workerNodes
  • +
  • busy
  • +
  • full
  • +
  • info
  • +
  • maxSize
  • +
  • minSize
  • +
  • ready
  • +
  • type
  • +
  • utilization
  • +
  • worker
  • +
  • afterTaskExecutionHook
  • +
  • afterWorkerNodeSetup
  • +
  • beforeTaskExecutionHook
  • +
  • checkDynamicPoolSize
  • +
  • createAndSetupDynamicWorkerNode
  • +
  • createAndSetupWorkerNode
  • +
  • createWorker
  • +
  • destroy
  • +
  • destroyWorkerNode
  • +
  • enableTasksQueue
  • +
  • execute
  • +
  • flushTasksQueue
  • +
  • getWorkerInfo
  • +
  • internalBusy
  • +
  • isMain
  • +
  • listTaskFunctions
  • +
  • registerWorkerMessageListener
  • +
  • sendKillMessageToWorker
  • +
  • sendStartupMessageToWorker
  • +
  • sendToWorker
  • +
  • setTasksQueueOptions
  • +
  • setWorkerChoiceStrategy
  • +
  • setWorkerChoiceStrategyOptions
  • +
  • setupHook
  • +
  • workerListener
  • + +

    Generated using TypeDoc

    -
    \ No newline at end of file +
    \ No newline at end of file