📜  pub schedule firebase - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:21.501000             🧑  作者: Mango

代码示例1
import {EventContext} from 'firebase-functions';
// There is an allowance of three free jobs per Google account
//  For example, to run a function every five minutes with 
//  AppEngine cron.yaml syntax, do something like this:
export const scheduledFunction = 
      functions.pubsub.schedule('every 5 minutes').onRun(
          (context: EventContext) => {
            console.log('This will be run every 5 minutes!');
            return new Promise();
     });