Karadzhov.DecayingCollections 0.2.0.16

dotnet add package Karadzhov.DecayingCollections --version 0.2.0.16
NuGet\Install-Package Karadzhov.DecayingCollections -Version 0.2.0.16
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="Karadzhov.DecayingCollections" Version="0.2.0.16" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Karadzhov.DecayingCollections --version 0.2.0.16
#r "nuget: Karadzhov.DecayingCollections, 0.2.0.16"
#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 Karadzhov.DecayingCollections as a Cake Addin
#addin nuget:?package=Karadzhov.DecayingCollections&version=0.2.0.16

// Install Karadzhov.DecayingCollections as a Cake Tool
#tool nuget:?package=Karadzhov.DecayingCollections&version=0.2.0.16

.NET library that provides thread-safe collections that automatically remove their elements after a particular time has passed. Each instance of a decaying collection has a timespan specified which is used as a lifespan for its elements.

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in 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
0.2.0.16 1,370 8/14/2016
0.1.1.8 1,262 8/6/2016
0.1.0.6 1,154 8/5/2016

0.2.0.16
     - Implemented DecayingDictionary;
     - Exposed Ring, Count setter and Cursor to inheritors of DecayingCollection;
     - Stricter concurrency handling;
     - Fixed a bug causing inconsistent Count when removing from current step;
     0.1.1.8
     - Fixed a bug which significantly extended the lifespan of objects;
     - Parameter validation for lifespan and steps on the constructors;
     - Breaking change: ITimer, used by the abstract DecayingCollection should accept a period in milliseconds instead of seconds;
     0.1.0.6
     - Implemented DecayingHashSet;
     - Implemented DecayingBag;