函式
函式 | 說明 |
---|---|
onThresholdAlertPublished(處理常式) | 宣告可處理效能門檻快訊的函式。 |
onThresholdAlertPublished(appId, handler) | 宣告可處理效能門檻快訊的函式。 |
onThresholdAlert 發布(選擇、處理常式) | 宣告可處理效能門檻快訊的函式。 |
介面
介面 | 說明 |
---|---|
Performance 事件 | 自訂 CloudEvent for Firebase 快訊 (含自訂擴充功能屬性)。 |
效能選項 | 應用程式發布函式的設定。 |
ThresholdAlertPayload | 效能門檻快訊的內部酬載物件。酬載會包裝在物件中。 |
alert.performance.onThresholdAlertPublished()
宣告可處理效能門檻快訊的函式。
簽名:
export declare function onThresholdAlertPublished(handler: (event: PerformanceEvent<ThresholdAlertPayload>) => any | Promise<any>): CloudFunction<PerformanceEvent<ThresholdAlertPayload>>;
參數
參數 | 類型 | 說明 |
---|---|---|
handler | (事件:PerformanceEvent<ThresholdAlertPayload>) =>不限 |承諾<任何> | 每次收到門檻快訊時都會執行的事件處理常式。 |
傳回:
CloudFunction<PerformanceEvent<ThresholdAlertPayload>>
可匯出及部署的函式。
alert.performance.onThresholdAlertPublished()
宣告可處理效能門檻快訊的函式。
簽名:
export declare function onThresholdAlertPublished(appId: string, handler: (event: PerformanceEvent<ThresholdAlertPayload>) => any | Promise<any>): CloudFunction<PerformanceEvent<ThresholdAlertPayload>>;
參數
參數 | 類型 | 說明 |
---|---|---|
應用程式 ID | 字串 | 處理常式會觸發的特定應用程式。 |
handler | (事件:PerformanceEvent<ThresholdAlertPayload>) =>不限 |承諾<任何> | 每次收到門檻快訊時都會執行的事件處理常式。 |
傳回:
CloudFunction<PerformanceEvent<ThresholdAlertPayload>>
可匯出及部署的函式。
alert.performance.onThresholdAlertPublished()
宣告可處理效能門檻快訊的函式。
簽名:
export declare function onThresholdAlertPublished(opts: PerformanceOptions, handler: (event: PerformanceEvent<ThresholdAlertPayload>) => any | Promise<any>): CloudFunction<PerformanceEvent<ThresholdAlertPayload>>;
參數
參數 | 類型 | 說明 |
---|---|---|
最佳化 | 效能選項 | 可對函式設定的選項。 |
handler | (事件:PerformanceEvent<ThresholdAlertPayload>) =>不限 |承諾<任何> | 每次收到門檻快訊時都會執行的事件處理常式。 |
傳回:
CloudFunction<PerformanceEvent<ThresholdAlertPayload>>
可匯出及部署的函式。