fix: ensure tasks redistribution avoid task execution starvation
[poolifier.git] / CHANGELOG.md
CommitLineData
522eea03 1# Changelog
2
3All notable changes to this project will be documented in this file.
4
d4abc60a 5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
522eea03 6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
45a5a54c
JB
8## [Unreleased]
9
10ecf8fd
JB
10### Fixed
11
12- Fix queued tasks redistribution on error task execution starvation.
13
aa9eede8
JB
14### Changed
15
7c89e6a4 16- Drastically reduce lookups by worker in the worker nodes.
aa9eede8 17
62485908
JB
18## [2.6.19] - 2023-07-20
19
2e2ef9c3
JB
20### Added
21
22- Dedicated internal communication channel for worker_threads pools.
23
8f4c9491
JB
24## [2.6.18] - 2023-07-19
25
8660b972
JB
26### Changed
27
28- Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller.
29
206a3519
JB
30## [2.6.17] - 2023-07-16
31
b4899fae
JB
32### Added
33
b569873d 34- Add `listTaskFunctions()` method to worker class.
b4899fae 35
58a06a6c
JB
36## [2.6.16] - 2023-07-12
37
2a69b8c5
JB
38### Fixed
39
80520ca4 40- Fix pool startup detection.
2a69b8c5
JB
41- Fix worker task functions handling.
42
b5900b02
JB
43## [2.6.15] - 2023-07-11
44
19dbc45b
JB
45### Added
46
47- Take into account worker node readiness in worker choice strategies.
48
4a0db581
JB
49## [2.6.14] - 2023-07-10
50
87e44747
JB
51### Fixed
52
53- Fix task function statistics tracking.
54
0265272f
JB
55## [2.6.13] - 2023-07-10
56
968a2e8c
JB
57### Added
58
59- Add per task function statistics tracking.
782299f8 60- Add public methods to manipulate the worker task functions at runtime.
968a2e8c 61
44c8c00f
JB
62## [2.6.12] - 2023-07-09
63
aa4bf4b2
JB
64### Fixed
65
66- Workaround import issue with `node:os` module in node 16.x.x.
67
b7cfced1
JB
68## [2.6.11] - 2023-07-09
69
d5024c00
JB
70### Fixed
71
72- Fix pool readiness semantic.
73
f313a208
JB
74## [2.6.10] - 2023-07-08
75
2431bdb4
JB
76### Fixed
77
78- Ensure workers are not recreated on error at pool startup.
79
80### Added
81
82- Add `ready` and `strategy` fields to pool information.
83- Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready.
caadbd41 84- Add dynamic pool sizing checks.
2431bdb4 85
369d0a51
JB
86## [2.6.9] - 2023-07-07
87
2845f2a5
JB
88### Fixed
89
90- Recreate the right worker type on uncaught exception.
91
92### Added
93
94- Add minimum and maximum to internal measurement statistics.
1dcf8b7b 95- Add `runTime` and `waitTime` to pool information.
75d3401a 96- Check worker inactive time only on dynamic worker.
2845f2a5 97
fc97d613
JB
98## [2.6.8] - 2023-07-03
99
92b1feaa
JB
100### Fixed
101
102- Brown paper bag release to fix version handling in pool information.
103
52d54060
JB
104## [2.6.7] - 2023-07-03
105
5bc91f3e
JB
106### Fixed
107
108- Ensure worker queued tasks at error are reassigned to other pool workers.
109
afe0d5bf
JB
110### Added
111
112- Add pool `utilization` ratio to pool information.
23ccf9d7 113- Add `version` to pool information.
e5b3047d 114- Add worker information to worker nodes.
afe0d5bf 115
f42c583f
JB
116## [2.6.6] - 2023-07-01
117
6961ca9a
JB
118### Added
119
120- Add safe helper `availableParallelism` to help sizing the pool.
121
3749facb
JB
122### Fixed
123
124- Ensure message handler is only registered in worker.
125
6fed2513
JB
126## [2.6.5] - 2023-06-27
127
c72f6987
JB
128### Known issues
129
70726c28 130- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
c72f6987
JB
131
132### Fixed
133
134- Artificial version bump to 2.6.5 to workaround publication issue.
135- Ensure cluster pool destroy() gracefully shutdowns worker's server.
136- Ensure pool event is emitted before task error promise rejection.
137- Fix queued tasks count computation.
138
139### Removed
140
2fbe1783 141- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
c72f6987 142
6426631b
JB
143## [2.6.4] - 2023-06-27
144
941f9a7c
JB
145### Known issues
146
70726c28 147- Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782
941f9a7c 148
2c039e43
JB
149### Fixed
150
151- Ensure cluster pool destroy() gracefully shutdowns worker's server.
152- Ensure pool event is emitted before task error promise rejection.
9c16fb4b 153- Fix queued tasks count computation.
2c039e43 154
941f9a7c
JB
155### Removed
156
2fbe1783 157- Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC.
941f9a7c 158
bc1b0765
JB
159## [2.6.3] - 2023-06-19
160
a6a2dc4c
JB
161### Fixed
162
163- Ensure no tasks are queued when trying to soft kill a dynamic worker.
f0d7f803 164- Update strategies internals after statistics computation.
a6a2dc4c 165
7b56f532
JB
166### Changed
167
168- Optimize O(1) queue implementation.
169
b628596c
JB
170## [2.6.2] - 2023-06-12
171
a9e89d00
JB
172### Fixed
173
174- Fix new worker use after creation in dynamic pool given the current worker choice strategy.
175
4368a898
JB
176## [2.6.1] - 2023-06-10
177
931d43e2
JB
178### Added
179
180- Add worker choice strategy documentation: [README.md](./src/pools/selection-strategies/README.md).
181
f1c06930
JB
182### Fixed
183
184- Fix average statistics computation: ensure failed tasks are not accounted.
185
16671b07
JB
186## [2.6.0] - 2023-06-09
187
a1347286
JB
188### Added
189
5af9c0f7 190- Add `LEAST_ELU` worker choice strategy (experimental).
9adcefab 191- Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy.
a1347286 192
1c6fe997
JB
193### Changed
194
195- Refactor pool worker node usage internals.
477f48e7 196- Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed.
f63a9dda 197- Breaking change: pool information `info` property object fields have been renamed.
1c6fe997
JB
198
199### Fixed
200
201- Fix wait time accounting.
202- Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time.
203- Ensure worker choice strategy `LEAST_USED` accounts also queued tasks.
204
aa07d6ee
JB
205## [2.5.4] - 2023-06-07
206
b6b32453
JB
207### Added
208
209- Add Event Loop Utilization (ELU) statistics to worker tasks usage.
210
211### Changed
212
213- Compute statistics at the worker level only if needed.
2fbe1783 214- Add `worker_threads` options to thread pool options.
b6b32453 215
272d4d8f
JB
216### Fixed
217
218- Make the `LEAST_BUSY` strategy only relies on task runtime.
219
ed47fb3d
JB
220## [2.5.3] - 2023-06-04
221
89a4abfd
JB
222### Changed
223
224- Refine pool information content.
b4213b7f 225- Limit pool internals public exposure.
89a4abfd 226
8a9febf5
JB
227## [2.5.2] - 2023-06-02
228
91ee39ed
JB
229### Added
230
231- Add `taskError` pool event for task execution error.
6b27d407 232- Add pool information `info` property to pool.
91ee39ed
JB
233- Emit pool information on `busy` and `full` pool events.
234
8babb151
JB
235## [2.5.1] - 2023-06-01
236
0e05c4dc
JB
237### Added
238
1f68cede 239- Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`.
91ee39ed 240- Add `error` pool event for uncaught worker error.
0e05c4dc 241
a8766181
JB
242## [2.5.0] - 2023-05-31
243
e4543b14
JB
244### Added
245
246- Switch pool event emitter to `EventEmitterAsyncResource`.
6da80d38 247- Add tasks wait time accounting in per worker tasks usage.
5af9c0f7 248- Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental).
e4543b14
JB
249
250### Changed
251
252- Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`.
253
570efb11
JB
254## [2.4.14] - 2023-05-09
255
b0f28bad
JB
256### Fixed
257
258- Ensure no undefined task runtime can land in the tasks history.
259- Fix median computation implementation once again.
260
110b6d13
JB
261### Added
262
263- Unit tests for median and queue implementations.
264
72584880
JB
265## [2.4.13] - 2023-05-08
266
b0d6ed8f
JB
267### Fixed
268
e3058615 269- Fix worker choice strategy options validation.
b0d6ed8f
JB
270- Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission.
271
06140c32
JB
272## [2.4.12] - 2023-05-06
273
a86b6df1
JB
274### Added
275
276- Support multiple task functions per worker.
08f3f44c 277- Add custom worker weights support to worker choice strategies options.
a86b6df1 278
29ee7e9a
JB
279### Changed
280
281- Use O(1) queue implementation for tasks queueing.
282
0682ba15
JB
283### Fixed
284
285- Fix median computation implementation.
286- Fix fair share worker choice strategy internals update.
287
936d53ec
JB
288## [2.4.11] - 2023-04-23
289
cb70b19d
JB
290### Changed
291
292- Optimize free worker finding in worker choice strategies.
293
15bb637a
JB
294## [2.4.10] - 2023-04-15
295
ef41a6e6
JB
296### Fixed
297
298- Fix typescript type definition for worker function: ensure the input data is optional.
299- Fix typescript type definition for pool execute(): ensure the input data is optional.
300
181eb2b4
JB
301## [2.4.9] - 2023-04-15
302
a20f0ba5
JB
303### Added
304
305- Add tasks queue enablement runtime setter to pool.
306- Add tasks queue options runtime setter to pool.
307- Add worker choice strategy options runtime setter to pool.
308
309### Changed
310
311- Remove the tasks queuing experimental status.
312
d4aeae5a
JB
313### Fixed
314
315- Fix worker function type definition and validation.
2fc5cae3 316- Fix worker choice strategy options handling.
d4aeae5a 317
1d9e7023
JB
318## [2.4.8] - 2023-04-12
319
f9b4bbf8
JB
320### Fixed
321
322- Fix message between main worker and worker type definition for tasks.
323- Fix code documentation.
324
12ae3210
JB
325## [2.4.7] - 2023-04-11
326
7171d33f
JB
327### Added
328
329- Add worker tasks queue options to pool options.
330
e8bd29ce
JB
331### Fixed
332
333- Fix missing documentation.
334
42c7bc10
JB
335## [2.4.6] - 2023-04-10
336
681196cc
JB
337### Fixed
338
339- Ensure one task at a time is executed per worker with tasks queueing enabled.
1c6fe997 340- Properly count worker executing tasks with tasks queueing enabled.
681196cc 341
54d360e3
JB
342## [2.4.5] - 2023-04-09
343
3fafb1b2
JB
344### Added
345
9e775f96
JB
346- Use monotonic high resolution timer for worker tasks runtime.
347- Add worker tasks median runtime to statistics.
ff733df7 348- Add worker tasks queue (experimental).
3fafb1b2 349
92fa3eb6
JB
350## [2.4.4] - 2023-04-07
351
aee46736
JB
352### Added
353
354- Add `PoolEvents` enumeration and `PoolEvent` type.
355
36b5e78f
JB
356### Fixed
357
ff0c2b3e 358- Destroy worker only on alive check.
36b5e78f 359
9fb0f324
JB
360## [2.4.3] - 2023-04-07
361
28cf3617
JB
362### Fixed
363
364- Fix typedoc generation with inheritance.
365
848f0f27
JB
366## [2.4.2] - 2023-04-06
367
164d950a
JB
368### Added
369
370- Add `full` event to dynamic pool.
32417142 371- Keep worker choice strategy in memory for conditional reuse.
164d950a 372
78ab2555
JB
373### Fixed
374
375- Fix possible negative worker key at worker removal in worker choice strategies.
376
79aafe9f
JB
377## [2.4.1] - 2023-04-05
378
9cd39dd4
JB
379### Changed
380
381- Optimize worker choice strategy for dynamic pool.
382
965415bb
JB
383### Fixed
384
385- Ensure dynamic pool does not alter worker choice strategy expected behavior.
386
d8b60b1c
JB
387## [2.4.0] - 2023-04-04
388
c6bd2650
JB
389### Added
390
391- Add `LESS_BUSY` worker choice strategy.
392
393### Changed
394
395- Optimize worker storage in pool.
396- Optimize worker alive status check.
397- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
398- Optimize `LESS_USED` worker choice strategy.
399- Update benchmarks versus external threads pools.
400- Optimize tasks usage statistics requirements for worker choice strategy.
401
402### Fixed
403
404- Ensure trimmable characters are checked at pool initialization.
405- Fix message id integer overflow.
406- Fix pool worker removal in worker choice strategy internals.
407- Fix package publication with pnpm.
408
d0a3f018
JB
409## [2.4.0-3] - 2023-04-04
410
b2ede285
JB
411### Added
412
413- Add `LESS_BUSY` worker choice strategy.
414
415### Changed
416
417- Optimize worker storage in pool.
418- Optimize worker alive status check.
419- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
420- Optimize `LESS_USED` worker choice strategy.
421- Update benchmarks versus external threads pools.
422
423### Fixed
424
425- Ensure trimmable characters are checked at pool initialization.
426- Fix message id integer overflow.
427- Fix pool worker removal in worker choice strategy internals.
428- Fix package publication with pnpm.
429
a015ea40
JB
430## [2.4.0-2] - 2023-04-03
431
698f4bbc
JB
432### Added
433
434- Add `LESS_BUSY` worker choice strategy.
435
436### Changed
437
438- Optimize worker storage in pool.
439- Optimize worker alive status check.
440- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
441- Optimize `LESS_USED` worker choice strategy.
442
443### Fixed
444
445- Ensure trimmable characters are checked at pool initialization.
446- Fix message id integer overflow.
447- Fix pool worker removal in worker choice strategy internals.
448- Fix package publication with pnpm.
449
8fe15920
JB
450## [2.4.0-1] - 2023-04-03
451
5b301c28
JB
452### Added
453
454- Add `LESS_BUSY` worker choice strategy.
455
456### Changed
457
458- Optimize worker storage in pool.
459- Optimize worker alive status check.
460- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
461- Optimize `LESS_USED` worker choice strategy.
462
463### Fixed
464
465- Ensure trimmable characters are checked at pool initialization.
466- Fix message id integer overflow.
467- Fix pool worker removal in worker choice strategy internals.
468
2fb9ca9c
JB
469## [2.4.0-0] - 2023-04-03
470
168c526f
JB
471### Added
472
473- Add `LESS_BUSY` worker choice strategy.
474
1d71a908
JB
475### Changed
476
ffcbbad8 477- Optimize worker storage in pool.
1d71a908 478- Optimize worker alive status check.
65a60b3b 479- BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`.
737c6d97 480- Optimize `LESS_USED` worker choice strategy.
1d71a908 481
ffcbbad8
JB
482### Fixed
483
484- Ensure trimmable characters are checked at pool initialization.
b4e75778 485- Fix message id integer overflow.
97a2abc3 486- Fix pool worker removal in worker choice strategy internals.
ffcbbad8 487
08372738
JB
488## [2.3.10] - 2023-03-18
489
710826bc
JB
490### Fixed
491
492- Fix `exports` syntax for ESM and CommonJS.
493
494### Changed
495
496- Permit SemVer pre-release publication.
76e5ac6f 497
e4796ecd
JB
498## [2.3.10-2] - 2023-03-18
499
6abad580
JB
500### Fixed
501
502- Fix `exports` syntax for ESM and CommonJS.
503
a2ee98cc
JB
504## [2.3.10-1] - 2023-03-18
505
7e060cee
JB
506### Changed
507
90483887 508- Permit SemVer pre-release publication.
7e060cee 509
c81bfafb
JB
510## [2.3.10-0] - 2023-03-18
511
fe18768d
JB
512### Fixed
513
514- Fix `exports` syntax for ESM and CommonJS.
515
d7b78217
JB
516## [2.3.9] - 2023-03-18
517
ed6dd37f
JB
518### Changed
519
520- Introduce ESM module support along with CommonJS one.
521
522### Fixed
523
524- Fix brown paper bag bug referencing the same object literal.
525
68e2ad86
JB
526## [2.3.8] - 2023-03-18
527
ca6c7d70
JB
528### Changed
529
530- Switch internal benchmarking code to benny.
fbdedeb9
JB
531- Switch to TypeScript 5.x.x.
532- Switch rollup bundler plugins to core ones.
ed6dd37f 533- Switch to TSDoc syntax.
fbdedeb9 534- Enforce conventional commits.
ca6c7d70 535
d15211d4
JB
536### Fixed
537
538- Fix random integer generator.
fbdedeb9 539- Fix worker choice strategy pool type identification at initialization.
d15211d4 540
995705ea
JB
541## [2.3.7] - 2022-10-23
542
b953022b
JB
543### Changed
544
545- Switch to open collective FOSS project funding platform.
78cea37e
JB
546- Switch to ts-standard linter configuration on TypeScript code.
547
548### Fixed
549
550- Fixed missing async on pool execute method.
551- Fixed typing in TypeScript example.
552- Fixed types in unit tests.
b953022b 553
3b9f6953
JB
554## [2.3.6] - 2022-10-22
555
f80cead4
JB
556### Changed
557
558- Cleanup pool attributes and methods.
559- Refine error types thrown.
560
561### Fixed
562
563- Fix continuous integration build on windows.
564- Fix code coverage reporting by using c8 instead of nyc.
565
efc22107
JB
566## [2.3.5] - 2022-10-21
567
7a6a0a96
JB
568### Changed
569
a05c10de
JB
570- Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter.
571- Optimize tasks usage lookup implementation.
7a6a0a96 572
b4904890
JB
573### Fixed
574
575- Fix missed pool event emitter type export.
576- Fix typedoc documentation generation.
577
a875f8d1
JB
578## [2.3.4] - 2022-10-17
579
73cda448
JB
580### Added
581
582- Fully automate release process with release-it.
583
45a5a54c
JB
584### Changed
585
73cda448 586- Optimize fair share task scheduling algorithm implementation.
eb4a8a82 587- Update benchmarks versus external pools results with latest version.
45a5a54c 588
90ee1b18 589## [2.3.3] - 2022-10-15
1a76932b
JB
590
591### Added
592
593- Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options.
594
90ee1b18 595## [2.3.2] - 2022-10-14
11df3590
JB
596
597### Changed
598
599- Optimize fair share worker selection strategy implementation.
600
601### Fixed
602
603- Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled.
604
90ee1b18 605## [2.3.1] - 2022-10-13
23ff945a
JB
606
607### Added
608
609- Pool worker choice strategies:
610 - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now.
611 - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now.
612
90ee1b18 613## [2.2.2] - 2022-10-09
cb2b6c69
JB
614
615### Fixed
616
617- Fixed `README.md` file.
618
90ee1b18 619## [2.2.1] - 2022-10-08
bdacc2d2 620
bdaf31cd
JB
621### Added
622
623- Dynamic worker choice strategy change at runtime.
bdacc2d2 624
90ee1b18 625## [2.2.0] - 2022-01-05
7e0d447f
JB
626
627### Breaking Changes
628
629- Support only NodeJS version 16.x.x for cluster pool: upstream cluster API have changed on that version.
630
90ee1b18 631## [2.1.0] - 2021-08-29
35cf1c03
JB
632
633### Added
634
635- Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker.
e088a00c
JB
636
637### Breaking Changes
638
639- `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute.
640- `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`.
641- `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`.
c365b2d3 642- `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker.
e088a00c 643
90ee1b18 644## [2.0.2] - 2021-05-12
14916bf9
JB
645
646### Bug fixes
647
648- Fix `busy` event emission on fixed pool type
649
90ee1b18 650## [2.0.1] - 2021-03-16
7f685093
JB
651
652### Bug fixes
653
654- Check if pool options are properly set.
655- `busy` event is emitted on all pool types.
656
90ee1b18 657## [2.0.0] - 2021-03-01
fa0f5b28 658
f3f833ab 659### Bug fixes
d63d3be3 660
ddbeaffd 661- Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70).
d63d3be3 662
fa0f5b28
S
663### Breaking Changes
664
7f685093 665- `FullPool` event is now renamed to `busy`.
1927ee67 666- `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`.
1a81f8af 667 _Find more details on our JSDoc._
ddbeaffd 668
1927ee67
APA
669- `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed.
670
ddbeaffd 671- We changed some internal structures, but you shouldn't be too affected by them as these are internal changes.
fa0f5b28 672
ec2ccfc8
JB
673### Pool options types declaration merge
674
675`FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`.
676
fa0f5b28
S
677#### New `export` strategy
678
679```js
680// Before
777b7824 681const DynamicThreadPool = require('poolifier/lib/dynamic')
fa0f5b28 682// After
777b7824 683const { DynamicThreadPool } = require('poolifier/lib/dynamic')
fa0f5b28
S
684```
685
686But you should always prefer just using
687
688```js
777b7824 689const { DynamicThreadPool } = require('poolifier')
fa0f5b28
S
690```
691
d3c8a1a8
S
692#### New type definitions for input data and response
693
6677a3d3 694For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data.
d3c8a1a8
S
695_This is not a limitation by poolifier but NodeJS._
696
3a4b605f 697#### Public property replacements
5c5a1fb7 698
3a4b605f 699`numWorkers` property is now `numberOfWorkers`
5c5a1fb7 700
280c2a77 701#### Internal (protected) properties and methods renaming
fa0f5b28 702
280c2a77
S
703These properties are not intended for end users
704
705- `id` => `nextMessageId`
706
707These methods are not intended for end users
fa0f5b28
S
708
709- `_chooseWorker` => `chooseWorker`
280c2a77 710- `_newWorker` => `createWorker`
fa0f5b28
S
711- `_execute` => `internalExecute`
712- `_chooseWorker` => `chooseWorker`
713- `_checkAlive` => `checkAlive`
714- `_run` => `run`
715- `_runAsync` => `runAsync`
716
90ee1b18 717## [1.1.0] - 2020-05-21
0312f71a
APA
718
719### Added
720
721- ThreadWorker support async functions as option
cf9aa6c3 722- Various external library patches
0312f71a 723
90ee1b18 724## [1.0.0] - 2020-01-24
522eea03 725
726### Added
727
728- FixedThreadPool implementation
729- DynamicThreadPool implementation
0312f71a 730- WorkerThread implementation to improve developer experience