Rystem.Concurrency 9.0.12

dotnet add package Rystem.Concurrency --version 9.0.12                
NuGet\Install-Package Rystem.Concurrency -Version 9.0.12                
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.12" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.Concurrency --version 9.0.12                
#r "nuget: Rystem.Concurrency, 9.0.12"                
#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.12

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

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.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
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.12 22,101 1/13/2025
9.0.11 23,063 1/9/2025
9.0.10 62 1/9/2025
9.0.9 170 1/7/2025
9.0.8 12,439 1/6/2025
9.0.7 89 1/6/2025
9.0.5 19,049 12/30/2024
9.0.4 92,268 12/23/2024
9.0.3 115 12/22/2024
9.0.2 10,668 12/21/2024
9.0.1 1,152 12/21/2024
9.0.0 172,979 11/16/2024
9.0.0-rc.1 101 10/18/2024
6.2.0 219,073 10/9/2024
6.1.1 140 10/9/2024
6.1.0 47,917 9/29/2024
6.0.24 194 9/11/2024
6.0.23 340,072 7/18/2024
6.0.21 171 6/18/2024
6.0.20 727,821 6/16/2024
6.0.19 30,405 6/14/2024
6.0.18 154 6/14/2024
6.0.17 166 6/14/2024
6.0.16 49,992 6/10/2024
6.0.15 166 6/9/2024
6.0.14 174 5/24/2024
6.0.13 155 5/23/2024
6.0.12 143 5/23/2024
6.0.11 157 5/20/2024
6.0.9 152 5/19/2024
6.0.7 134 5/18/2024
6.0.6 157 5/10/2024
6.0.5 157 5/10/2024
6.0.4 179 4/3/2024
6.0.3 1,562 3/25/2024
6.0.2 2,591 3/11/2024
6.0.1 142 3/8/2024
6.0.0 386 11/21/2023
6.0.0-rc.6 117 10/25/2023
6.0.0-rc.5 85 10/25/2023
6.0.0-rc.4 81 10/23/2023
6.0.0-rc.3 77 10/19/2023
6.0.0-rc.2 88 10/18/2023
6.0.0-rc.1 89 10/16/2023
5.0.20 542 9/25/2023
5.0.19 1,124 9/10/2023
5.0.18 372 9/6/2023
5.0.17 353 9/6/2023
5.0.16 330 9/5/2023
5.0.15 343 9/5/2023
5.0.14 351 9/5/2023
5.0.13 462 9/1/2023
5.0.12 324 8/31/2023
5.0.11 353 8/30/2023
5.0.10 355 8/29/2023
5.0.9 345 8/24/2023
5.0.8 346 8/24/2023
5.0.7 341 8/23/2023
5.0.6 342 8/21/2023
5.0.5 361 8/21/2023
5.0.4 371 8/16/2023
5.0.3 429 8/2/2023
5.0.2 380 8/2/2023
5.0.1 416 8/1/2023
5.0.0 410 7/31/2023
4.1.26 735 7/20/2023
4.1.25 389 7/16/2023
4.1.24 595 6/13/2023
4.1.23 407 6/13/2023
4.1.22 405 5/30/2023
4.1.21 416 5/20/2023
4.1.20 315,613 4/19/2023
4.1.19 95,199 3/20/2023
4.1.18 487 3/20/2023
4.1.17 486 3/16/2023
4.1.16 511 3/16/2023
4.1.15 949 3/15/2023
4.1.14 2,187 3/9/2023
4.1.13 511 3/7/2023
4.1.12 552 2/9/2023
4.1.11 559 1/26/2023
4.1.10 567 1/22/2023
4.1.9 574 1/20/2023
4.1.8 574 1/18/2023
4.1.7 599 1/18/2023
4.1.6 561 1/17/2023
4.1.1 546 1/4/2023
4.1.0 561 12/30/2022
3.0.25 742 12/21/2022
3.0.24 806 11/18/2022
3.0.23 779 11/18/2022
3.0.22 824 11/15/2022
3.0.21 812 11/14/2022
3.0.20 780 11/13/2022
3.0.19 820 11/2/2022
3.0.18 843 11/2/2022
3.0.17 860 10/29/2022
3.0.16 863 10/29/2022
3.0.15 875 10/29/2022
2.0.6 924 9/20/2022
2.0.5 1,182 9/20/2022
2.0.4 928 9/20/2022
2.0.3 502 9/20/2022
2.0.1 1,009 9/13/2022
2.0.0 841 8/19/2022
1.1.24 1,087 7/30/2022
1.1.23 944 7/29/2022
1.1.22 488 7/29/2022
1.1.21 920 7/29/2022
1.1.20 955 7/29/2022
1.1.19 992 7/27/2022
1.1.17 945 7/27/2022
1.1.16 506 7/26/2022
1.1.15 955 7/25/2022
1.1.14 957 7/25/2022
1.1.13 947 7/22/2022
1.1.12 944 7/19/2022
1.1.11 978 7/19/2022
1.1.10 963 7/19/2022
1.1.9 972 7/19/2022
1.1.8 966 7/18/2022
1.1.7 982 7/18/2022
1.1.6 965 7/18/2022
1.0.5 526 7/17/2022
1.0.4 958 7/17/2022
1.0.2 1,011 7/17/2022
1.0.1 488 7/12/2022
1.0.0 1,539 7/8/2022
0.10.7 1,031 7/8/2022
0.9.12 968 6/30/2022
0.9.11 931 6/29/2022
0.9.10 993 6/28/2022
0.9.9 515 6/27/2022