Intent.Dapr.AspNetCore.Bindings.Cron
This module allows execution of Command
s by Dapr on a CRON schedule.
Enabling a CRON schedule for a Command
Right-click any command and apply the Dapr Cron Binding
stereotype. If the Command
was not already exposed over HTTP, it is configured to be so going forward.
Update the Schedule
property to the desired schedule using the Schedule Format as per Dapr docs.
Constraints
When the Dapr Cron Binding
stereotype is applied, Command
s must adhere to the following constraints for the binding to be able to work:
- The
Http Settings
'Verb
must be set toPOST
. - The
Http Settings
'Return Type Mediatype
must be set toDefault
. - It cannot have any fields.
- It cannot have a return type.