eventarc namespace

関数

関数 説明
onCustomEventPublished(eventType, handler) デフォルト チャネルで公開された Eventarc イベントを処理します。
onCustomEventPublished(opts, handler) Eventarc イベントを処理します。

インターフェース

インターフェース 説明
EventarcTriggerOptions Eventarc トリガーで設定できるオプション。

eventarc.onCustomEventPublished()

デフォルト チャネルで公開された Eventarc イベントを処理します。

署名:

export declare function onCustomEventPublished<T = any>(eventType: string, handler: (event: CloudEvent<T>) => any | Promise<any>): CloudFunction<CloudEvent<T>>;

パラメータ

パラメータ 説明
eventType 文字列 トリガーするイベントのタイプ。
handler (イベント: CloudEvent<T>)=>任意 |<任意> を約束する トリガーされたときに実行する関数。

戻り値:

CloudFunction<CloudEvent<T>>

エクスポートしてデプロイできる関数。

eventarc.onCustomEventPublished()

Eventarc イベントを処理します。

署名:

export declare function onCustomEventPublished<T = any>(opts: EventarcTriggerOptions, handler: (event: CloudEvent<T>) => any | Promise<any>): CloudFunction<CloudEvent<T>>;

パラメータ

パラメータ 説明
最適化 EventarcTriggerOptions この関数で設定するオプション
handler (イベント: CloudEvent<T>)=>任意 |<任意> を約束する トリガーされたときに実行する関数。

戻り値:

CloudFunction<CloudEvent<T>>

エクスポートしてデプロイできる関数。