Implementing Parallel Pipeline with TPL DataFlow
This recipe shows how to implement a Parallel Pipeline pattern with the help of TPL DataFlow library.
Getting ready
To start with this recipe, you will need a running Visual Studio 2012. There are no other prerequisites. The source code for this recipe could be found at 7644_Code\Chapter10\Recipe3
.
How to do it...
To understand how to implement Parallel Pipeline with TPL DataFlow, perform the following steps:
- Start Visual Studio 2012. Create a new C# Console Application project.
- Add references to the Microsoft TPL DataFlow NuGet package.
- Right-click on the References folder in the project and select the Manage NuGet Packages... menu option.
- Now add your preferred references to the Microsoft TPL DataFlow NuGet package. You can use the search option in the Manage NuGet Packages dialog as follows:
- In the
Program.cs
file, add the followingusing
directives:using System; using System.Threading; using System.Threading.Tasks; using System.Threading.Tasks...