Intent.Dapr.AspNetCore.Bindings.Cron
This module allows execution of Commands 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, Commands must adhere to the following constraints for the binding to be able to work:
- The
Http Settings'Verbmust be set toPOST. - The
Http Settings'Return Type Mediatypemust be set toDefault. - It cannot have any fields.
- It cannot have a return type.