X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2FWorkerStaticPool.ts;h=ab8e309f208f4655ff0ba6acb96929fea12c8d3d;hb=ce4d00ee7295ccdb12f35154eb2eb72973b6e75b;hp=20d53b0e02d305e9f4623175cdca0301a737a81b;hpb=a4624c96a6c159b4885f5d0baaf592ceec0bab30;p=e-mobility-charging-stations-simulator.git diff --git a/src/worker/WorkerStaticPool.ts b/src/worker/WorkerStaticPool.ts index 20d53b0e..ab8e309f 100644 --- a/src/worker/WorkerStaticPool.ts +++ b/src/worker/WorkerStaticPool.ts @@ -1,12 +1,12 @@ -import { FixedThreadPool, FixedThreadPoolOptions } from 'poolifier'; +import { FixedThreadPool, PoolOptions } from 'poolifier'; import Constants from '../utils/Constants'; import Utils from '../utils/Utils'; +import { Worker } from 'worker_threads'; +import WorkerAbstract from './WorkerAbstract'; import { WorkerData } from '../types/Worker'; -import Wrk from './Wrk'; -import { threadId } from 'worker_threads'; -export default class WorkerStaticPool extends Wrk { +export default class WorkerStaticPool extends WorkerAbstract { private pool: StaticPool; /** @@ -14,9 +14,9 @@ export default class WorkerStaticPool extends Wrk { * * @param {string} workerScript */ - constructor(workerScript: string, numThreads: number) { + constructor(workerScript: string, numberOfThreads: number) { super(workerScript); - this.pool = StaticPool.getInstance(numThreads, this.workerScript); + this.pool = StaticPool.getInstance(numberOfThreads, this.workerScript); } get size(): number { @@ -24,7 +24,7 @@ export default class WorkerStaticPool extends Wrk { } get maxElementsPerWorker(): number { - return 1; + return null; } /** @@ -40,7 +40,16 @@ export default class WorkerStaticPool extends Wrk { * @return {Promise} * @public */ - public async addElement(elementData: WorkerData): Promise { + public async stop(): Promise { + return this.pool.destroy(); + } + + /** + * + * @return {Promise} + * @public + */ + public async addElement(elementData: T): Promise { await this.pool.execute(elementData); // Start worker sequentially to optimize memory at startup await Utils.sleep(Constants.START_WORKER_DELAY); @@ -50,17 +59,17 @@ export default class WorkerStaticPool extends Wrk { class StaticPool extends FixedThreadPool { private static instance: StaticPool; - private constructor(numThreads: number, workerScript: string, opts?: FixedThreadPoolOptions) { - super(numThreads, workerScript, opts); + private constructor(numberOfThreads: number, workerScript: string, opts?: PoolOptions) { + super(numberOfThreads, workerScript, opts); } - public static getInstance(numThreads: number, workerScript: string): StaticPool { + public static getInstance(numberOfThreads: number, workerScript: string): StaticPool { if (!StaticPool.instance) { - StaticPool.instance = new StaticPool(numThreads, workerScript, + StaticPool.instance = new StaticPool(numberOfThreads, workerScript, { exitHandler: (code) => { if (code !== 0) { - console.error(`Worker ${threadId} stopped with exit code ${code}`); + console.error(`Worker stopped with exit code ${code}`); } } }