Parallel.Pipes 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Parallel.Pipes --version 1.2.0
NuGet\Install-Package Parallel.Pipes -Version 1.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Parallel.Pipes" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Parallel.Pipes --version 1.2.0
#r "nuget: Parallel.Pipes, 1.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Parallel.Pipes as a Cake Addin
#addin nuget:?package=Parallel.Pipes&version=1.2.0

// Install Parallel.Pipes as a Cake Tool
#tool nuget:?package=Parallel.Pipes&version=1.2.0

Pipes is a concurrency abstraction.

To learn how to use them, please visit the project home page at:
https://github.com/michaelbradley91/Pipes

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.4 1,210 1/2/2016
1.2.3 931 1/2/2016
1.2.2 949 1/2/2016
1.2.1 971 1/2/2016
1.2.0 980 1/2/2016
1.1.3 967 12/30/2015
1.1.2 958 12/30/2015
1.1.1 951 12/28/2015
1.1.0 956 12/28/2015
1.0.0 1,069 12/26/2015

Added the valved pipe. This allows you to Send or Receive from a pipe.

Summary:
* Valved Pipe
* Adapter Inlet
* Adapter Outlet

Ultimately, this enables you to wait for any number of receivers or senders to arrive in one atomic operation! This was implemented using existing pipes.

The mechanism for adding custom composite pipes has been rounded off and simplified. Documentation of the project web site coming soon...