poolifier 2.6.37 → 2.6.38

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.
Files changed (33) hide show
  1. package/README.md +6 -3
  2. package/lib/index.d.ts +1881 -22
  3. package/lib/index.js +1 -1
  4. package/lib/index.mjs +1 -1
  5. package/package.json +4 -3
  6. package/lib/circular-array.d.ts +0 -22
  7. package/lib/deque.d.ts +0 -83
  8. package/lib/pools/abstract-pool.d.ts +0 -316
  9. package/lib/pools/cluster/dynamic.d.ts +0 -29
  10. package/lib/pools/cluster/fixed.d.ts +0 -62
  11. package/lib/pools/pool.d.ts +0 -243
  12. package/lib/pools/selection-strategies/abstract-worker-choice-strategy.d.ts +0 -104
  13. package/lib/pools/selection-strategies/fair-share-worker-choice-strategy.d.ts +0 -39
  14. package/lib/pools/selection-strategies/interleaved-weighted-round-robin-worker-choice-strategy.d.ts +0 -39
  15. package/lib/pools/selection-strategies/least-busy-worker-choice-strategy.d.ts +0 -26
  16. package/lib/pools/selection-strategies/least-elu-worker-choice-strategy.d.ts +0 -26
  17. package/lib/pools/selection-strategies/least-used-worker-choice-strategy.d.ts +0 -24
  18. package/lib/pools/selection-strategies/round-robin-worker-choice-strategy.d.ts +0 -24
  19. package/lib/pools/selection-strategies/selection-strategies-types.d.ts +0 -200
  20. package/lib/pools/selection-strategies/weighted-round-robin-worker-choice-strategy.d.ts +0 -35
  21. package/lib/pools/selection-strategies/worker-choice-strategy-context.d.ts +0 -71
  22. package/lib/pools/thread/dynamic.d.ts +0 -29
  23. package/lib/pools/thread/fixed.d.ts +0 -54
  24. package/lib/pools/version.d.ts +0 -1
  25. package/lib/pools/worker-node.d.ts +0 -60
  26. package/lib/pools/worker.d.ts +0 -277
  27. package/lib/utility-types.d.ts +0 -152
  28. package/lib/utils.d.ts +0 -123
  29. package/lib/worker/abstract-worker.d.ts +0 -192
  30. package/lib/worker/cluster-worker.d.ts +0 -35
  31. package/lib/worker/task-functions.d.ts +0 -33
  32. package/lib/worker/thread-worker.d.ts +0 -43
  33. 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
- **_Contributors_**
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)