mirror of https://github.com/dapr/docs.git
Minor binding update. Inc reference section (#401)
* Minor binding update. Inc reference section * Updating links * Updating links Co-authored-by: Aman Bhardwaj <amanbha@users.noreply.github.com>
This commit is contained in:
parent
dddf9d023f
commit
ed1c7535ed
|
@ -42,5 +42,11 @@ curl -X POST -H http://localhost:3500/v1.0/bindings/myEvent -d '{ "data": { "me
|
|||
```
|
||||
|
||||
As seen above, we invoked the `/binding` endpoint with the name of the binding to invoke, in our case its `myEvent`.
|
||||
The payload goes inside the mandatory `data` field, and can be any JSON serializable value.
|
||||
|
||||
The payload goes inside the `data` field.
|
||||
|
||||
## References
|
||||
|
||||
* Binding [API](https://github.com/dapr/docs/blob/master/reference/api/bindings_api.md)
|
||||
* Binding [Components](https://github.com/dapr/docs/tree/master/concepts/bindings)
|
||||
* Binding [Detailed specifications](https://github.com/dapr/docs/tree/master/reference/specs/bindings)
|
||||
|
|
|
@ -84,3 +84,10 @@ res.status(500).send()
|
|||
|
||||
### Event delivery Guarantees
|
||||
Event delivery guarantees are controlled by the binding implementation. Depending on the binding implementation, the event delivery can be exactly once or at least once.
|
||||
|
||||
|
||||
## References
|
||||
|
||||
* Binding [API](https://github.com/dapr/docs/blob/master/reference/api/bindings_api.md)
|
||||
* Binding [Components](https://github.com/dapr/docs/tree/master/concepts/bindings)
|
||||
* Binding [Detailed specifications](https://github.com/dapr/docs/tree/master/reference/specs/bindings)
|
||||
|
|
Loading…
Reference in New Issue