X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fcluster%2Ffixed.ts;h=a13a95ceea7aed2a01c98a4f8641408ad2c38741;hb=f1c0693012b2ec60fe1a0cbf457015b3f874e96f;hp=592b3fe7d4234fe3df267074963b10301ee23707;hpb=82f36766232abd4e4ffde72ecd68462adf59cca7;p=poolifier.git diff --git a/src/pools/cluster/fixed.ts b/src/pools/cluster/fixed.ts index 592b3fe7..a13a95ce 100644 --- a/src/pools/cluster/fixed.ts +++ b/src/pools/cluster/fixed.ts @@ -32,8 +32,6 @@ export interface ClusterPoolOptions extends PoolOptions { * * It is possible to perform tasks in sync or asynchronous mode as you prefer. * - * This pool selects the workers in a round robin fashion. - * * @typeParam Data - Type of data sent to the worker. This can only be serializable data. * @typeParam Response - Type of execution response. This can only be serializable data. * @author [Christopher Quadflieg](https://github.com/Shinigami92)