Firebase Eventarc。
函式
函式 | 說明 |
---|---|
getEventarc(應用程式) | 取得適用於預設應用程式或指定應用程式的 Eventarc 服務。getEventarc() 無需引數即可存取預設應用程式的 Eventarc 服務,或以 getEventarc(app) 的服務存取與 Eventarc 相關聯的應用程式。 |
類別
類別 | 說明 |
---|---|
水道 | Eventarc 管道。 |
Eventarc | 繫結至所提供應用程式的 Eventarc 服務。 |
介面
介面 | 說明 |
---|---|
管道選項 | 管道選項介面。 |
CloudEvent | CloudEvent 描述事件資料。 |
型別別名
類型別名 | 說明 |
---|---|
CloudEventVersion | CloudEvent 版本。 |
getEventarc(應用程式)
取得預設應用程式或特定應用程式的 Eventarc 服務。
呼叫 getEventarc()
時無需引數,即可存取預設應用程式的 Eventarc
服務,也可使用 getEventarc(app)
形式呼叫,存取與特定應用程式相關聯的 Eventarc
服務。
簽名:
export declare function getEventarc(app?: App): Eventarc;
參數
參數 | 類型 | 說明 |
---|---|---|
應用程式 | 應用程式 | 系統會傳回其 Eventarc 服務的選用應用程式。如未提供,將傳回預設的 Eventarc 服務。 |
傳回:
如未提供應用程式,或是與提供應用程式相關聯的 Eventarc
服務,則預設的 Eventarc
服務。
範例 1
// Get the Eventarc service for the default app
const defaultEventarc = getEventarc();
範例 2
// Get the Eventarc service for a given app
const otherEventarc = getEventarc(otherApp);
CloudEventVersion
CloudEvent 版本。
簽名:
export type CloudEventVersion = '1.0';