Function schedule_flows::schedule_cron_job
source · pub async fn schedule_cron_job(cron: String, body: String)
Expand description
Create a cron job.
cron
is a cron expression. There is
currently a limitation to use this function. The minute
should be specified as exact number. That’s to say, you can not
set *
, value list or range of values to these two fields.
The bytes vec as the parameter of callback function is currently the same as the body passed to the function.