refactor: cleanup internal pool messaging code
[poolifier.git] / src / pools / cluster / fixed.ts
index 7a3b630b8dd8bf261dac5a207542100f423f0c42..a88197f715bdd2c2a129638d3960dce9d9ac8420 100644 (file)
@@ -30,8 +30,6 @@ export interface ClusterPoolOptions extends PoolOptions<Worker> {
 /**
  * A cluster pool with a fixed number of workers.
  *
- * 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 [Christopher Quadflieg](https://github.com/Shinigami92)