From bab3799bc1f9b4d565d2a93a10f50f15bc13dda7 Mon Sep 17 00:00:00 2001 From: Mark Chmarny Date: Wed, 8 Jul 2020 05:57:13 -0700 Subject: [PATCH] adds bnding listing, docs on canceling schedules --- concepts/bindings/README.md | 1 + reference/specs/bindings/cron.md | 3 +++ 2 files changed, 4 insertions(+) diff --git a/concepts/bindings/README.md b/concepts/bindings/README.md index 9db291128..bf0c77285 100644 --- a/concepts/bindings/README.md +++ b/concepts/bindings/README.md @@ -21,6 +21,7 @@ Every binding has its own unique set of properties. Click the name link to see t | Name | Input
Binding | Output
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 | diff --git a/reference/specs/bindings/cron.md b/reference/specs/bindings/cron.md index 79b676826..0a0719eb2 100644 --- a/reference/specs/bindings/cron.md +++ b/reference/specs/bindings/cron.md @@ -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). \ No newline at end of file