Channel.prototype.hasSubscribers - Node documentation
property Channel.prototype.hasSubscribers

Usage in Deno

import { Channel } from "node:diagnostics_channel";

Check if there are active subscribers to this channel. This is helpful if the message you want to send might be expensive to prepare.

This API is optional but helpful when trying to publish messages from very performance-sensitive code.

import diagnostics_channel from 'node:diagnostics_channel';

const channel = diagnostics_channel.channel('my-channel');

if (channel.hasSubscribers) {
  // There are subscribers, prepare and publish message
}

Type

boolean