* @param min Minimum number of workers which are always active.
* @param max Maximum number of workers that can be created by this pool.
* @param filePath Path to an implementation of a `ClusterWorker` file, which can be relative or absolute.
- * @param [opts={}] Options for this dynamic cluster pool.
+ * @param opts Options for this dynamic cluster pool.
*/
public constructor (
min: number,
*
* @param numberOfWorkers Number of workers for this pool.
* @param filePath Path to an implementation of a `ClusterWorker` file, which can be relative or absolute.
- * @param [opts={}] Options for this fixed cluster pool.
+ * @param opts Options for this fixed cluster pool.
*/
public constructor (
numberOfWorkers: number,
* @param min Minimum number of threads which are always active.
* @param max Maximum number of threads that can be created by this pool.
* @param filePath Path to an implementation of a `ThreadWorker` file, which can be relative or absolute.
- * @param [opts={}] Options for this dynamic thread pool.
+ * @param opts Options for this dynamic thread pool.
*/
public constructor (
min: number,
*
* @param numberOfThreads Number of threads for this pool.
* @param filePath Path to an implementation of a `ThreadWorker` file, which can be relative or absolute.
- * @param [opts={}] Options for this fixed thread pool.
+ * @param opts Options for this fixed thread pool.
*/
public constructor (
numberOfThreads: number,