pubsub namespace

功能

功能描述
时间表(时间表)注册云函数以在指定时间运行。
主题(主题)注册当 Google Cloud Pub/Sub 消息发送到指定主题时触发的 Cloud Function。

课程

班级描述
信息表示 Google Cloud Pub/Sub 消息的接口。
时间表生成器计划功能的构建器,由 Google Pub/Sub 和 Cloud Scheduler 提供支持。描述部署以按提供的频率触发计划功能的 Cloud Scheduler 作业。有关更多信息,请参阅[计划函数](/docs/functions/schedule-functions)。通过functions.pubsub.schedule()访问。
主题生成器Google Cloud Pub/Sub 主题生成器。通过functions.pubsub.topic()访问。

pubsub.schedule()

注册云函数以在指定时间运行。

签名:

export declare function schedule(schedule: string): ScheduleBuilder;

参数

范围类型描述
日程细绳时间表,采用 Unix Crontab 或 AppEngine 语法。

返回:

时间表生成器

ScheduleBuilder 接口。

pubsub.topic()

注册当 Google Cloud Pub/Sub 消息发送到指定主题时触发的 Cloud Function。

签名:

export declare function topic(topic: string): TopicBuilder;

参数

范围类型描述
话题细绳用于监视消息事件的 Pub/Sub 主题。

返回:

主题生成器

Pub/Sub 主题生成器界面。