AsyncCollections 1.3.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package AsyncCollections --version 1.3.7
                    
NuGet\Install-Package AsyncCollections -Version 1.3.7
                    
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="AsyncCollections" Version="1.3.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AsyncCollections" Version="1.3.7" />
                    
Directory.Packages.props
<PackageReference Include="AsyncCollections" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AsyncCollections --version 1.3.7
                    
#r "nuget: AsyncCollections, 1.3.7"
                    
#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.
#:package AsyncCollections@1.3.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AsyncCollections&version=1.3.7
                    
Install as a Cake Addin
#tool nuget:?package=AsyncCollections&version=1.3.7
                    
Install as a Cake Tool

This package contains a set of lock-free thread-safe collections designed to be used asynchronously.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
2.0.0 46,118 10/2/2019
2.0.0-rc 1,116 7/19/2018
1.3.8 4,811 5/9/2016
1.3.7 1,746 2/14/2016
1.3.6 1,922 11/21/2015
1.3.5 1,706 11/2/2015
1.3.4 1,704 10/28/2015
1.3.3 1,481 10/28/2015
1.3.2 1,605 3/30/2015
1.3.1 1,503 3/28/2015
1.3.0 1,853 12/13/2014
1.2.0 1,638 10/25/2014
1.1.0 1,650 10/25/2014
1.0.0 1,586 10/18/2014

v1.3.7: Fixed a race condition between AsyncBatchQueue.Add() and AsyncBatchQueue.Flush()
v1.3.6: Added GitLink symbol integration
v1.3.5: Fixed the cancellation delegate leak in AsyncCollection.TaskFromAny(). AsyncCollection.TakeAsync() no longer consumes an item if the CancellationToken is cancelled before the call.
v1.3.4: Removed unnecessary dependencies
v1.3.3: Fixed the cancellation delegate leak in AsyncCollection.TakeAsync()
v1.3.2: Fixed the crash when running on Mono
v1.3.1: AsyncCollection.TakeAsync() continuation can no longer be inlined on the thread that called Add()
v1.3.0: AsyncCollections is now a PCL
v1.2.0: AsyncBoundedPriorityQueue<T>
v1.1.0: AsyncCollection<T>.TakeFromAny()
v1.0.0: Initial release.