Clean bindings readme (#168)

* Updated periods and temp file change

* Update file name

* Updated name in links
This commit is contained in:
Greg Ingram 2019-10-19 11:14:36 -04:00 committed by Aman Bhardwaj
parent 13e0e985bd
commit 0c5c307974
4 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ This directory contains various Dapr concepts. The goal of these documents is to
## Core Concepts ## Core Concepts
* [**Bindings**](./bindings/Readme.md) * [**Bindings**](./bindings/README.md)
A binding provides a bi-directional connection to an external cloud/on-premise service or system. Dapr allows you to invoke the external service through the standard Dapr binding API, and it allows your application to be triggered by events sent by the connected service. A binding provides a bi-directional connection to an external cloud/on-premise service or system. Dapr allows you to invoke the external service through the standard Dapr binding API, and it allows your application to be triggered by events sent by the connected service.

View File

@ -3,8 +3,8 @@
Using bindings, you can trigger your app with events coming in from external systems, or invoke external systems. 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 dapr bindings help developers with the following:
* Remove the complexities of connecting to, and polling from, messaging systems such as queues, message buses etc * 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 interact with a system
* Keep the code free from SDKs or libraries * Keep the code free from SDKs or libraries
* Handles retries and failure recovery * Handles retries and failure recovery
* Switch between bindings at runtime time * Switch between bindings at runtime time
@ -43,7 +43,7 @@ An optional payload and metadata might be sent with the request.
In order to receive events from an input binding: In order to receive events from an input binding:
1. Define the component YAML that describes the type of binding and its metadata (connection info, etc.) 1. Define the component YAML that describes the type of binding and its metadata (connection info, etc.)
2. Listen on an HTTP endpoint for the incoming event, or use the gRPC proto library to get incoming events. 2. Listen on an HTTP endpoint for the incoming event, or use the gRPC proto library to get incoming events
Read the [How To](../../howto) section to get started with input bindings. Read the [How To](../../howto) section to get started with input bindings.

View File

@ -7,7 +7,7 @@ For a compelete sample showing output bindings, visit this [link](<PLACEHOLDER>)
An output binding represents a resource that Dapr will use invoke and send messages to. An output binding represents a resource that Dapr will use invoke and send messages to.
For the purpose of this guide, we'll use a Kafka binding. You can find a list of the different binding specs [here](../../concepts/bindings/Readme.md). For the purpose of this guide, we'll use a Kafka binding. You can find a list of the different binding specs [here](../../concepts/bindings/README.md).
Create the following YAML file, named binding.yaml, and save this to the /components sub-folder in your application directory. Create the following YAML file, named binding.yaml, and save this to the /components sub-folder in your application directory.

View File

@ -10,7 +10,7 @@ Dapr bindings allow you to:
* Replace bindings without changing your code * Replace bindings without changing your code
* Focus on business logic and not the event resource implementation * Focus on business logic and not the event resource implementation
For more info on bindings, read [this](../../concepts/bindings/Readme.md) link.<br> For more info on bindings, read [this](../../concepts/bindings/README.md) link.<br>
For a complete sample showing bindings, visit this [link](https://github.com/dapr/samples/tree/master/5.bindings). For a complete sample showing bindings, visit this [link](https://github.com/dapr/samples/tree/master/5.bindings).
## 1. Create a binding ## 1. Create a binding