poolifier 2.6.37 → 2.6.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -3
- package/lib/index.d.ts +1881 -22
- package/lib/index.js +1 -1
- package/lib/index.mjs +1 -1
- package/package.json +4 -3
- package/lib/circular-array.d.ts +0 -22
- package/lib/deque.d.ts +0 -83
- package/lib/pools/abstract-pool.d.ts +0 -316
- package/lib/pools/cluster/dynamic.d.ts +0 -29
- package/lib/pools/cluster/fixed.d.ts +0 -62
- package/lib/pools/pool.d.ts +0 -243
- package/lib/pools/selection-strategies/abstract-worker-choice-strategy.d.ts +0 -104
- package/lib/pools/selection-strategies/fair-share-worker-choice-strategy.d.ts +0 -39
- package/lib/pools/selection-strategies/interleaved-weighted-round-robin-worker-choice-strategy.d.ts +0 -39
- package/lib/pools/selection-strategies/least-busy-worker-choice-strategy.d.ts +0 -26
- package/lib/pools/selection-strategies/least-elu-worker-choice-strategy.d.ts +0 -26
- package/lib/pools/selection-strategies/least-used-worker-choice-strategy.d.ts +0 -24
- package/lib/pools/selection-strategies/round-robin-worker-choice-strategy.d.ts +0 -24
- package/lib/pools/selection-strategies/selection-strategies-types.d.ts +0 -200
- package/lib/pools/selection-strategies/weighted-round-robin-worker-choice-strategy.d.ts +0 -35
- package/lib/pools/selection-strategies/worker-choice-strategy-context.d.ts +0 -71
- package/lib/pools/thread/dynamic.d.ts +0 -29
- package/lib/pools/thread/fixed.d.ts +0 -54
- package/lib/pools/version.d.ts +0 -1
- package/lib/pools/worker-node.d.ts +0 -60
- package/lib/pools/worker.d.ts +0 -277
- package/lib/utility-types.d.ts +0 -152
- package/lib/utils.d.ts +0 -123
- package/lib/worker/abstract-worker.d.ts +0 -192
- package/lib/worker/cluster-worker.d.ts +0 -35
- package/lib/worker/task-functions.d.ts +0 -33
- package/lib/worker/thread-worker.d.ts +0 -43
- package/lib/worker/worker-options.d.ts +0 -61
package/README.md
CHANGED
|
@@ -35,9 +35,9 @@ Moreover you can execute your tasks using an API designed to improve the **devel
|
|
|
35
35
|
Please consult our [general guidelines](#general-guidelines).
|
|
36
36
|
|
|
37
37
|
- Easy to use :white_check_mark:
|
|
38
|
-
- Performance [benchmarks](./benchmarks/README.md) :white_check_mark:
|
|
39
38
|
- Fixed and dynamic pool size :white_check_mark:
|
|
40
39
|
- Easy switch from a pool type to another :white_check_mark:
|
|
40
|
+
- Performance [benchmarks](./benchmarks/README.md) :white_check_mark:
|
|
41
41
|
- No runtime dependencies :white_check_mark:
|
|
42
42
|
- Proper integration with Node.js [async_hooks](https://nodejs.org/api/async_hooks.html) :white_check_mark:
|
|
43
43
|
- Support for CommonJS, ESM, and TypeScript :white_check_mark:
|
|
@@ -188,11 +188,14 @@ See [CONTRIBUTING](CONTRIBUTING.md) guidelines.
|
|
|
188
188
|
|
|
189
189
|
- [**Alessandro Pio Ardizio**](https://github.com/pioardi)
|
|
190
190
|
|
|
191
|
-
**
|
|
191
|
+
**Maintainers:**
|
|
192
192
|
|
|
193
|
-
- [**Shinigami92**](https://github.com/Shinigami92)
|
|
194
193
|
- [**Jérôme Benoit**](https://github.com/jerome-benoit)
|
|
195
194
|
|
|
195
|
+
**Contributors:**
|
|
196
|
+
|
|
197
|
+
- [**Shinigami92**](https://github.com/Shinigami92)
|
|
198
|
+
|
|
196
199
|
## License
|
|
197
200
|
|
|
198
201
|
[MIT](./LICENSE)
|