监听
订阅给定的 pubsubOrPlan
以获取给定主题 (topicOrPlan
) 的实时更新,通过 itemPlan
回调映射生成的事件。
用法
const $pubsub = context().get("pubsub");
const $eventStream = listen($pubsub, "my_event", ($item) =>
doSomethingWith($item),
);
订阅给定的 pubsubOrPlan
以获取给定主题 (topicOrPlan
) 的实时更新,通过 itemPlan
回调映射生成的事件。
用法
const $pubsub = context().get("pubsub");
const $eventStream = listen($pubsub, "my_event", ($item) =>
doSomethingWith($item),
);