refactor: cleanup internal pool messaging code
[poolifier.git] / src / pools / thread / fixed.ts
index 881e37f636eb3a5ba4770c0c7b90cbb994ab029e..ac629e1fb0ff7f363be0a3fe5107f2b02748c8d8 100644 (file)
@@ -29,8 +29,6 @@ export interface ThreadPoolOptions extends PoolOptions<Worker> {
 /**
  * A thread pool with a fixed number of threads.
  *
- * It is possible to perform tasks in sync or asynchronous mode as you prefer.
- *
  * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
  * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
  * @author [Alessandro Pio Ardizio](https://github.com/pioardi)