當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。