mirror of https://github.com/dapr/docs.git
Minor style changes
This commit is contained in:
parent
23b217e8dd
commit
0a1cb857b5
|
@ -1,15 +1,15 @@
|
|||
# Bindings
|
||||
|
||||
Using bindings, you can trigger your app with events coming in from external systems, or invoke external systems. This feature provides several advantages for you and your code:
|
||||
Using bindings, you can trigger your app with events coming in from external systems, or invoke external systems. This building block provides several benefits for you and your code:
|
||||
|
||||
* You can remove the complexities of connecting to, and polling from, messaging systems such as queues, message buses, etc...
|
||||
* You can focus on business logic and not implementation details of how to interact with a system
|
||||
* You can keep your code free from SDKs or libraries
|
||||
* You can handle retries and failure recovery
|
||||
* You can switch between bindings at run time
|
||||
* You can build portable applications where environment-specific bindings are set-up and no code changes are required
|
||||
* Remove the complexities of connecting to, and polling from, messaging systems such as queues and message buses
|
||||
* Focus on business logic and not implementation details of how to interact with a system
|
||||
* Keep your code free from SDKs or libraries
|
||||
* Handle retries and failure recovery
|
||||
* Switch between bindings at run time
|
||||
* Build portable applications where environment-specific bindings are set-up and no code changes are required
|
||||
|
||||
For a specific example, bindings would allow your microservice to respond to incoming Twilio/SMS messages without adding/configuring a third-party Twilio SDK, worrying about polling from Twilio (or doing websockets, etc...).
|
||||
For a specific example, bindings would allow your microservice to respond to incoming Twilio/SMS messages without adding or configuring a third-party Twilio SDK, worrying about polling from Twilio (or using websockets, etc.).
|
||||
|
||||
Bindings are developed independently of Dapr runtime. You can view and contribute to the bindings [here](https://github.com/dapr/components-contrib/tree/master/bindings).
|
||||
|
||||
|
|
Loading…
Reference in New Issue