summaryrefslogtreecommitdiff
path: root/benchmark/diagnostics_channel/publish.js
blob: 3a30012ba692b8020c7c65dd80fc5e5cf56c868c (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
26
27
28
29
'use strict';
const common = require('../common.js');
const dc = require('diagnostics_channel');

const bench = common.createBenchmark(main, {
  n: [1e8],
  subscribers: [0, 1, 10],
});

function noop() {}

function main({ n, subscribers }) {
  const channel = dc.channel('test');
  for (let i = 0; i < subscribers; i++) {
    channel.subscribe(noop);
  }

  const data = {
    foo: 'bar',
  };

  bench.start();
  for (let i = 0; i < n; i++) {
    if (channel.hasSubscribers) {
      channel.publish(data);
    }
  }
  bench.end(n);
}