Rystem.Concurrency 9.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.Concurrency --version 9.0.2                
NuGet\Install-Package Rystem.Concurrency -Version 9.0.2                
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="Rystem.Concurrency" Version="9.0.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.Concurrency --version 9.0.2                
#r "nuget: Rystem.Concurrency, 9.0.2"                
#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 Rystem.Concurrency as a Cake Addin
#addin nuget:?package=Rystem.Concurrency&version=9.0.2

// Install Rystem.Concurrency as a Cake Tool
#tool nuget:?package=Rystem.Concurrency&version=9.0.2                

What is Rystem?

Concurrency

Async Lock

A lock keyword is used in C# to lock a memory address to have a sort of execution queue. But, unfortunately, you cannot use async methods in the lock statement. With async lock you also may have the lock behavior for your async methods. In DI you have to add the lock service

services.AddLock();

Inject ILock and use it

ILock locking = _serviceProvider.CreateScope().ServiceProvider.GetService<ILock>();
await locking!.ExecuteAsync(() => CountAsync(2), "SampleKey");

You have the method to execute, a key for more than one concurrent lock.

Race condition

First of all, you have to understand the race condition here In DI you have to add the lock service

services.AddRaceCondition();

Inject IRaceCodition and use it

 var raceCondition = _serviceProvider.CreateScope().ServiceProvider.GetService<IRaceCodition>();
 raceCondition!.ExecuteAsync(() => CountAsync(2), (i % 2).ToString(), TimeSpan.FromSeconds(2));

You have the method to execute, a key for more than one concurrent race, and a time span for time window, if you put 2 seconds, you block the execution of further methods for 2 seconds from when first method started.

ILockable

You can inject the ILockable interface for your purpose, like a distributed lock with Blob storage, or redis cache for instance.

services.AddLockableIntegration<BlobLockIntegration>();
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Rystem.Concurrency:

Package Downloads
Rystem.Test.XUnit

Rystem is a open-source framework to improve the System namespace in .Net

Rystem.BackgroundJob

Rystem.

Rystem.Concurrency.Redis

Rystem.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.4 27,800 12/23/2024
9.0.3 101 12/22/2024
9.0.2 10,657 12/21/2024
9.0.1 1,143 12/21/2024
9.0.0 172,974 11/16/2024
9.0.0-rc.1 98 10/18/2024
6.2.0 219,066 10/9/2024
6.1.1 139 10/9/2024
6.1.0 47,914 9/29/2024
6.0.24 189 9/11/2024
6.0.23 340,068 7/18/2024
6.0.21 169 6/18/2024
6.0.20 727,819 6/16/2024
6.0.19 30,401 6/14/2024
6.0.18 152 6/14/2024
6.0.17 162 6/14/2024
6.0.16 49,990 6/10/2024
6.0.15 164 6/9/2024
6.0.14 172 5/24/2024
6.0.13 153 5/23/2024
6.0.12 141 5/23/2024
6.0.11 155 5/20/2024
6.0.9 150 5/19/2024
6.0.7 132 5/18/2024
6.0.6 155 5/10/2024
6.0.5 155 5/10/2024
6.0.4 177 4/3/2024
6.0.3 1,465 3/25/2024
6.0.2 2,515 3/11/2024
6.0.1 140 3/8/2024
6.0.0 384 11/21/2023
6.0.0-rc.6 115 10/25/2023
6.0.0-rc.5 83 10/25/2023
6.0.0-rc.4 79 10/23/2023
6.0.0-rc.3 75 10/19/2023
6.0.0-rc.2 86 10/18/2023
6.0.0-rc.1 87 10/16/2023
5.0.20 540 9/25/2023
5.0.19 1,122 9/10/2023
5.0.18 370 9/6/2023
5.0.17 351 9/6/2023
5.0.16 328 9/5/2023
5.0.15 341 9/5/2023
5.0.14 349 9/5/2023
5.0.13 460 9/1/2023
5.0.12 322 8/31/2023
5.0.11 351 8/30/2023
5.0.10 353 8/29/2023
5.0.9 343 8/24/2023
5.0.8 344 8/24/2023
5.0.7 339 8/23/2023
5.0.6 340 8/21/2023
5.0.5 359 8/21/2023
5.0.4 369 8/16/2023
5.0.3 426 8/2/2023
5.0.2 378 8/2/2023
5.0.1 414 8/1/2023
5.0.0 408 7/31/2023
4.1.26 733 7/20/2023
4.1.25 387 7/16/2023
4.1.24 593 6/13/2023
4.1.23 405 6/13/2023
4.1.22 403 5/30/2023
4.1.21 414 5/20/2023
4.1.20 315,611 4/19/2023
4.1.19 95,198 3/20/2023
4.1.18 486 3/20/2023
4.1.17 485 3/16/2023
4.1.16 510 3/16/2023
4.1.15 948 3/15/2023
4.1.14 2,186 3/9/2023
4.1.13 510 3/7/2023
4.1.12 550 2/9/2023
4.1.11 557 1/26/2023
4.1.10 565 1/22/2023
4.1.9 572 1/20/2023
4.1.8 572 1/18/2023
4.1.7 597 1/18/2023
4.1.6 559 1/17/2023
4.1.1 544 1/4/2023
4.1.0 559 12/30/2022
3.0.25 740 12/21/2022
3.0.24 804 11/18/2022
3.0.23 777 11/18/2022
3.0.22 822 11/15/2022
3.0.21 810 11/14/2022
3.0.20 778 11/13/2022
3.0.19 818 11/2/2022
3.0.18 841 11/2/2022
3.0.17 858 10/29/2022
3.0.16 861 10/29/2022
3.0.15 873 10/29/2022
2.0.6 923 9/20/2022
2.0.5 1,181 9/20/2022
2.0.4 926 9/20/2022
2.0.3 500 9/20/2022
2.0.1 1,007 9/13/2022
2.0.0 839 8/19/2022
1.1.24 1,082 7/30/2022
1.1.23 942 7/29/2022
1.1.22 486 7/29/2022
1.1.21 918 7/29/2022
1.1.20 953 7/29/2022
1.1.19 990 7/27/2022
1.1.17 943 7/27/2022
1.1.16 504 7/26/2022
1.1.15 953 7/25/2022
1.1.14 955 7/25/2022
1.1.13 945 7/22/2022
1.1.12 942 7/19/2022
1.1.11 976 7/19/2022
1.1.10 961 7/19/2022
1.1.9 970 7/19/2022
1.1.8 964 7/18/2022
1.1.7 978 7/18/2022
1.1.6 961 7/18/2022
1.0.5 524 7/17/2022
1.0.4 956 7/17/2022
1.0.2 1,009 7/17/2022
1.0.1 486 7/12/2022
1.0.0 1,537 7/8/2022
0.10.7 1,029 7/8/2022
0.9.12 966 6/30/2022
0.9.11 929 6/29/2022
0.9.10 991 6/28/2022
0.9.9 513 6/27/2022