alerts.performance namespace

函数

函数 说明
onThresholdAlertPublish(handler) 声明可以处理接收性能阈值提醒的函数。
onThresholdAlertPublish(appId, Handler) 声明可以处理接收性能阈值提醒的函数。
onThresholdAlertPublish(opts, Handler) 声明可以处理接收性能阈值提醒的函数。

接口

接口 说明
PerformanceEvent 自定义 CloudEvent for Firebase 提醒(具有自定义附加信息属性)。
PerformanceOptions 应用分发函数的配置。
ThresholdAlert 载荷 性能阈值提醒的内部载荷对象。载荷封装在对象内。

alerts.performance.onThresholdAlertPublish()

声明可以处理接收性能阈值提醒的函数。

签名

export declare function onThresholdAlertPublished(handler: (event: PerformanceEvent<ThresholdAlertPayload>) => any | Promise<any>): CloudFunction<PerformanceEvent<ThresholdAlertPayload>>;

参数

参数 类型 说明
handler (事件:PerformanceEvent<ThresholdAlertPayload>)=>任何 |承诺<any> 每次收到阈值提醒时运行的事件处理程序。

返回

CloudFunction<PerformanceEvent<ThresholdAlertPayload>>

您可以导出和部署的函数。

alerts.performance.onThresholdAlertPublish()

声明可以处理接收性能阈值提醒的函数。

签名

export declare function onThresholdAlertPublished(appId: string, handler: (event: PerformanceEvent<ThresholdAlertPayload>) => any | Promise<any>): CloudFunction<PerformanceEvent<ThresholdAlertPayload>>;

参数

参数 类型 说明
appId 字符串 将触发处理程序的特定应用。
handler (事件:PerformanceEvent<ThresholdAlertPayload>)=>任何 |承诺<any> 每次收到阈值提醒时运行的事件处理程序。

返回

CloudFunction<PerformanceEvent<ThresholdAlertPayload>>

您可以导出和部署的函数。

alerts.performance.onThresholdAlertPublish()

声明可以处理接收性能阈值提醒的函数。

签名

export declare function onThresholdAlertPublished(opts: PerformanceOptions, handler: (event: PerformanceEvent<ThresholdAlertPayload>) => any | Promise<any>): CloudFunction<PerformanceEvent<ThresholdAlertPayload>>;

参数

参数 类型 说明
优化 PerformanceOptions 可针对函数设置的选项。
handler (事件:PerformanceEvent<ThresholdAlertPayload>)=>任何 |承诺<any> 每次收到阈值提醒时运行的事件处理程序。

返回

CloudFunction<PerformanceEvent<ThresholdAlertPayload>>

您可以导出和部署的函数。