当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js diagnostics_channel.hasSubscribers(name)用法及代码示例


diagnostics_channel.hasSubscribers(name)

添加于:v15.1.0、v14.17.0

参数

检查指定频道是否有活动订阅者。如果您要发送的消息的准备成本可能很高,这将很有帮助。

此 API 是可选的,但在尝试从对性能非常敏感的代码发布消息时很有帮助。

import diagnostics_channel from 'node:diagnostics_channel';

if (diagnostics_channel.hasSubscribers('my-channel')) {
  // There are subscribers, prepare and publish message
}const diagnostics_channel = require('node:diagnostics_channel');

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

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 diagnostics_channel.hasSubscribers(name)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。