X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fworker%2Fabstract-worker.ts;h=475595eccf5f2e2c85b4eac8ba251f306f472c5d;hb=36b5e78f5d0a98040273f48b409e643fe5902913;hp=5165417924b66cafbb9dceb6e2cab53c24ee7965;hpb=b1989cfdf9af9f2c5e01b9a3f7c81b8c3ed78cb4;p=poolifier.git diff --git a/src/worker/abstract-worker.ts b/src/worker/abstract-worker.ts index 51654179..475595ec 100644 --- a/src/worker/abstract-worker.ts +++ b/src/worker/abstract-worker.ts @@ -29,10 +29,6 @@ export abstract class AbstractWorker< * Handler Id of the `aliveInterval` worker alive check. */ protected readonly aliveInterval?: NodeJS.Timeout - /** - * Options for the worker. - */ - public readonly opts: WorkerOptions /** * Constructs a new poolifier worker. * @@ -47,7 +43,7 @@ export abstract class AbstractWorker< protected readonly isMain: boolean, fn: (data: Data) => Response, protected mainWorker: MainWorker | undefined | null, - opts: WorkerOptions = { + protected readonly opts: WorkerOptions = { /** * The kill behavior option on this Worker or its default value. */ @@ -60,7 +56,6 @@ export abstract class AbstractWorker< } ) { super(type) - this.opts = opts this.checkFunctionInput(fn) this.checkWorkerOptions(this.opts) if (!this.isMain) {