Update README.md (#581)

Corrected wordings

Co-authored-by: Young Bu Park <youngp@microsoft.com>
This commit is contained in:
Shailendra Singh 2020-05-20 00:43:25 +02:00 committed by GitHub
parent aa742b5ad4
commit 0312d7e32c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,13 +1,13 @@
# Bindings
Using bindings, you can trigger your app with events coming in from external systems, or invoke external systems.
Bindings allow for on-demand, event-driven compute scenarios, and dapr bindings help developers with the following:
Bindings allow for on-demand, event-driven compute scenarios, and help developers with the following:
* Remove the complexities of connecting to, and polling from, messaging systems such as queues, message buses, etc.
* Focus on business logic and not the implementation details of how interact with a system
* Focus on business logic and not the implementation details of how to interact with a system
* Keep the code free from SDKs or libraries
* Handles retries and failure recovery
* Switch between bindings at runtime time
* Switch between bindings at run time
* Enable portable applications where environment-specific bindings are set-up and no code changes are required
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).