Scheduler in Azure Function -
i have following function.json
azure function triggers @ particular time set.
{ "disabled": false, "bindings": [ { "authlevel": "function", "name": "req", "type": "httptrigger", "direction": "in", "schedule": "* 30 10 * * *" }, { "name": "$return", "type": "http", "direction": "out" } ] }
i need schedule another trigger different time, same azure function. possible add multiple triggering time same function? if not, please suggest alternative way so.
you cannot add more 1 trigger function. however, can solve putting relevant code in helper method, , have 2 different functions call out helper. it's small additional pain, avoid duplicating key logic.
Comments
Post a Comment