|
il y a 3 mois | |
---|---|---|
.. | ||
CosmosDBTriggers | il y a 3 mois | |
JsonFile | il y a 3 mois | |
Lang | il y a 8 mois | |
Properties | il y a 11 mois | |
Services | il y a 3 mois | |
.gitignore | il y a 11 mois | |
IESCosmosDBTrigger.cs | il y a 10 mois | |
IESHttpTrigger.cs | il y a 5 mois | |
IESServiceBusTrigger.cs | il y a 5 mois | |
IESTimerTrigger.cs | il y a 3 mois | |
Program.cs | il y a 3 mois | |
TEAMModelOS.Function.csproj | il y a 3 mois | |
host.json | il y a 11 mois | |
readme.md | il y a 11 mois |
The TimerTrigger
makes it incredibly easy to have your functions executed on a schedule. This sample demonstrates a simple use case of calling your function every 5 minutes.
For a TimerTrigger
to work, you provide a schedule in the form of a cron expression(See the link for full details). A cron expression is a string with 6 separate expressions which represent a given schedule via patterns. The pattern we use to represent every 5 minutes is 0 */5 * * * *
. This, in plain text, means: "When seconds is equal to 0, minutes is divisible by 5, for any hour, day of the month, month, day of the week, or year".
Documentation