X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=docs%2Finterfaces%2FWorkerInfo.html;h=19f99638e312417f53bc5642dac8313f3b840d74;hb=c03520402c4c5f329df346b743b64da08555995c;hp=525769094b899f540c89dc6e40c4135e9ff76a90;hpb=ce9e97f17ed0d1b2928919244dce5a7887f843f5;p=poolifier.git diff --git a/docs/interfaces/WorkerInfo.html b/docs/interfaces/WorkerInfo.html index 52576909..19f99638 100644 --- a/docs/interfaces/WorkerInfo.html +++ b/docs/interfaces/WorkerInfo.html @@ -1,172 +1,18 @@ -WorkerInfo | poolifier - v2.6.29
-
- -
-
-
-
- -

Interface WorkerInfoInternal

-
-

Worker information.

-
-
-
-

Hierarchy

-
    -
  • WorkerInfo
-
-
-
- -
-
-

Properties

-
-
-

Properties

-
- -
dynamic: boolean
-

Dynamic flag.

-
-
-
- -
id: undefined | number
-

Worker id.

-
-
-
- -
ready: boolean
-

Ready flag.

-
-
-
- -
taskFunctions?: string[]
-

Task function names.

-
-
-
- -
type: "thread" | "cluster"
-

Worker type.

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file +WorkerInfo | poolifier - v4.0.14

Interface WorkerInfoInternal

Worker information.

+
interface WorkerInfo {
    backPressure: boolean;
    dynamic: boolean;
    id: undefined | number;
    ready: boolean;
    stealing: boolean;
    taskFunctionsProperties?: TaskFunctionProperties[];
    type: "thread" | "cluster";
}

Properties

backPressure: boolean

Back pressure flag. +This flag is set to true when worker node tasks queue has back pressure.

+
dynamic: boolean

Dynamic flag.

+
id: undefined | number

Worker id.

+
ready: boolean

Ready flag.

+
stealing: boolean

Stealing flag. +This flag is set to true when worker node is stealing tasks from another worker node.

+
taskFunctionsProperties?: TaskFunctionProperties[]

Task functions properties.

+
type: "thread" | "cluster"

Worker type.

+
\ No newline at end of file