You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pools/pool.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -260,8 +260,8 @@ export interface IPool<
260
260
* @param name - The name of the task function.
261
261
* @param fn - The task function.
262
262
* @returns `true` if the task function was added, `false` otherwise.
263
-
* @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string or an empty string.
264
-
* @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `fn` parameter is not a function.
263
+
* @throws {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError} If the `name` parameter is not a string or an empty string.
264
+
* @throws {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError} If the `fn` parameter is not a function.
Copy file name to clipboardExpand all lines: src/pools/selection-strategies/worker-choice-strategy-context.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -170,7 +170,7 @@ export class WorkerChoiceStrategyContext<
170
170
* Executes the worker choice strategy in the context algorithm.
171
171
*
172
172
* @returns The key of the worker node.
173
-
* @throws {@link https://nodejs.org/api/errors.html#class-error} If after configured retries the worker node key is null or undefined .
173
+
* @throws {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error} If after configured retries the worker node key is null or undefined .
Copy file name to clipboardExpand all lines: src/worker/abstract-worker.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -395,7 +395,7 @@ export abstract class AbstractWorker<
395
395
* Check if the message worker id is set and matches the worker id.
396
396
*
397
397
* @param message - The message to check.
398
-
* @throws {@link https://nodejs.org/api/errors.html#class-error} If the message worker id is not set or does not match the worker id.
398
+
* @throws {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error} If the message worker id is not set or does not match the worker id.
0 commit comments