adds bnding listing, docs on canceling schedules

This commit is contained in:
Mark Chmarny 2020-07-08 05:57:13 -07:00
parent ef1e2ead32
commit bab3799bc1
2 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,7 @@ Every binding has its own unique set of properties. Click the name link to see t
| Name | Input<br>Binding | Output<br>Binding | Status |
|------|:----------------:|:-----------------:|--------|
| [Cron (Scheduler)](../../reference/specs/bindings/cron.md) | ✅ | ✅ | Experimental |
| [HTTP](../../reference/specs/bindings/http.md) | | ✅ | Experimental |
| [Kafka](../../reference/specs/bindings/kafka.md) | ✅ | ✅ | Experimental |
| [Kubernetes Events](../../reference/specs/bindings/kubernetes.md) | ✅ | | Experimental |

View File

@ -40,3 +40,6 @@ For ease of use, the Dapr cron binding also supports few shortcuts:
* `@every 15s` where `s` is seconds, `m` minutes, and `h` hours
* `@daily` or `@hourly` which runs at that period from the time the binding is initialized
## Programmability
The Dapr cron binding also supports `Invoke` method with `Delete` operation as an output binding which can be used to cancel existing schedule programmatically. For more about sending events see the [Output Bindings docs](https://github.com/dapr/docs/tree/master/howto/send-events-with-output-bindings).