summaryrefslogtreecommitdiff
path: root/tests/workers_startup_bench.ts
blob: 46b2b2801242c737e00bd2994064280a3ac6ad65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Benchmark measures time it takes to start and stop a number of workers.
const workerCount = 50;

async function bench(): Promise<void> {
  const workers: Worker[] = [];
  for (var i = 1; i <= workerCount; ++i) {
    const worker = new Worker("tests/subdir/bench_worker.ts");
    const promise = new Promise(resolve => {
      worker.onmessage = e => {
        if (e.data.cmdId === 0) resolve();
      };
    });
    worker.postMessage({ cmdId: 0, action: 2 });
    await promise;
    workers.push(worker);
  }
  console.log("Done creating workers closing workers!");
  for (const worker of workers) {
    worker.postMessage({ action: 3 });
    await worker.closed; // Required to avoid a cmdId not in table error.
  }
  console.log("Finished!");
}

bench();