Rystem.Queue
9.0.27
See the version list below for details.
dotnet add package Rystem.Queue --version 9.0.27
NuGet\Install-Package Rystem.Queue -Version 9.0.27
<PackageReference Include="Rystem.Queue" Version="9.0.27" />
<PackageVersion Include="Rystem.Queue" Version="9.0.27" />
<PackageReference Include="Rystem.Queue" />
paket add Rystem.Queue --version 9.0.27
#r "nuget: Rystem.Queue, 9.0.27"
#addin nuget:?package=Rystem.Queue&version=9.0.27
#tool nuget:?package=Rystem.Queue&version=9.0.27
Queue
You have to configure it in DI BackgroundJobCronFormat is the CRON for background job that checks if Maximum buffer is exceeded or has a retention expired, usually is lesser than or equal of MaximumRetentionCronFormat. MaximumRetentionCronFormat is the CRON for maximum time before to empty the queue and call the IQueueManager<T>. MaximumBuffer is the maximum queue length before to empty the queue and call the IQueueManager<T>.
services.AddMemoryQueue<Sample, SampleQueueManager>(x =>
{
x.MaximumBuffer = 1000;
x.MaximumRetentionCronFormat = "*/3 * * * * *";
x.BackgroundJobCronFormat = "*/1 * * * * *";
});
public class SampleQueueManager : IQueueManager<Sample>
{
public Task ManageAsync(IEnumerable<Sample> items)
{
return Task.CompletedTask;
}
}
For instance, in the example above you have a maximum queue length of 1000, a background job thatc checks every 1 second if there are 1000 or more items or maximum retention period of 3 seconds is expired. after the build you have to warm up
var app = builder.Build();
await app.Services.WarmUpAsync();
and inject to use it
var queue = _serviceProvider.GetService<IQueue<Sample>>()!;
for (int i = 0; i < 100; i++)
await queue.AddAsync(new Sample() { Id = i.ToString() });
In this example, after 1000 elements or 3 seconds the configured actions will be fired and the queue will be emptied.
Stack (Last In First Out)
services.AddMemoryStackQueue<Sample, SampleQueueManager>(x =>
{
x.MaximumBuffer = 1000;
x.MaximumRetentionCronFormat = "*/3 * * * * *";
x.BackgroundJobCronFormat = "*/1 * * * * *";
});
Custom integration
If you want to use a distributed queue like storage queue, or event hub or service bus or event grid, you can write your own integration and configure it.
services.AddQueueIntegration<Sample, SampleQueueManager, YourQueueIntegration>(x =>
{
x.MaximumBuffer = 1000;
x.MaximumRetentionCronFormat = "*/3 * * * * *";
x.BackgroundJobCronFormat = "*/1 * * * * *";
});
Product | Versions 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
- Rystem.BackgroundJob (>= 9.0.27)
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 |
---|---|---|
9.1.2 | 221,721 | 5/29/2025 |
9.1.1 | 97,705 | 5/2/2025 |
9.0.32 | 186,521 | 4/15/2025 |
9.0.31 | 5,693 | 4/2/2025 |
9.0.30 | 88,744 | 3/26/2025 |
9.0.29 | 8,920 | 3/18/2025 |
9.0.28 | 162 | 3/17/2025 |
9.0.27 | 164 | 3/16/2025 |
9.0.26 | 172 | 3/13/2025 |
9.0.25 | 52,015 | 3/9/2025 |
9.0.20 | 19,470 | 3/6/2025 |
9.0.19 | 219 | 3/6/2025 |
9.0.18 | 231 | 3/4/2025 |
9.0.17 | 111 | 3/1/2025 |
9.0.16 | 107 | 3/1/2025 |
9.0.15 | 75,448 | 2/22/2025 |
9.0.14 | 22,489 | 2/18/2025 |
9.0.13 | 130 | 2/9/2025 |
9.0.12 | 217,522 | 1/13/2025 |
9.0.11 | 23,971 | 1/9/2025 |
9.0.10 | 99 | 1/9/2025 |
9.0.9 | 3,972 | 1/7/2025 |
9.0.8 | 12,461 | 1/6/2025 |
9.0.7 | 115 | 1/6/2025 |
9.0.4 | 92,282 | 12/23/2024 |
9.0.3 | 129 | 12/22/2024 |
9.0.2 | 10,668 | 12/21/2024 |
9.0.1 | 1,151 | 12/21/2024 |
9.0.0 | 172,920 | 11/16/2024 |
9.0.0-rc.1 | 91 | 10/18/2024 |
6.2.0 | 220,013 | 10/10/2024 |
6.1.1 | 129 | 10/9/2024 |
6.1.0 | 47,856 | 9/29/2024 |
6.0.24 | 161 | 9/11/2024 |
6.0.23 | 155 | 7/18/2024 |
6.0.21 | 146 | 6/18/2024 |
6.0.20 | 152 | 6/16/2024 |
6.0.19 | 136 | 6/14/2024 |
6.0.18 | 129 | 6/14/2024 |
6.0.17 | 144 | 6/14/2024 |
6.0.16 | 132 | 6/10/2024 |
6.0.15 | 133 | 6/9/2024 |
6.0.14 | 155 | 5/24/2024 |
6.0.13 | 146 | 5/23/2024 |
6.0.12 | 136 | 5/23/2024 |
6.0.11 | 142 | 5/20/2024 |
6.0.9 | 138 | 5/20/2024 |
6.0.7 | 127 | 5/18/2024 |
6.0.6 | 148 | 5/10/2024 |
6.0.5 | 143 | 5/10/2024 |
6.0.4 | 144 | 4/3/2024 |
6.0.3 | 148 | 3/25/2024 |
6.0.2 | 3,664 | 3/11/2024 |
6.0.0 | 233 | 11/21/2023 |
6.0.0-rc.6 | 118 | 10/25/2023 |
6.0.0-rc.5 | 94 | 10/25/2023 |
6.0.0-rc.4 | 87 | 10/23/2023 |
6.0.0-rc.3 | 88 | 10/19/2023 |
6.0.0-rc.2 | 92 | 10/18/2023 |
6.0.0-rc.1 | 90 | 10/16/2023 |
5.0.20 | 184 | 9/25/2023 |
5.0.19 | 178 | 9/10/2023 |
5.0.18 | 167 | 9/6/2023 |
5.0.17 | 170 | 9/6/2023 |
5.0.16 | 163 | 9/5/2023 |
5.0.15 | 162 | 9/5/2023 |
5.0.14 | 162 | 9/5/2023 |
5.0.13 | 152 | 9/1/2023 |
5.0.12 | 159 | 8/31/2023 |
5.0.11 | 155 | 8/30/2023 |
5.0.10 | 188 | 8/29/2023 |
5.0.9 | 180 | 8/24/2023 |
5.0.8 | 168 | 8/24/2023 |
5.0.7 | 171 | 8/23/2023 |
5.0.6 | 172 | 8/21/2023 |
5.0.5 | 160 | 8/21/2023 |
5.0.4 | 180 | 8/16/2023 |
5.0.3 | 198 | 8/2/2023 |
5.0.2 | 184 | 8/2/2023 |
5.0.1 | 188 | 8/1/2023 |
5.0.0 | 202 | 7/31/2023 |
4.1.26 | 215 | 7/20/2023 |
4.1.25 | 205 | 7/16/2023 |
4.1.24 | 274 | 6/13/2023 |
4.1.23 | 191 | 6/13/2023 |
4.1.22 | 190 | 5/30/2023 |
4.1.21 | 186 | 5/20/2023 |
4.1.20 | 315,181 | 4/19/2023 |
4.1.19 | 94,921 | 3/20/2023 |
4.1.18 | 256 | 3/20/2023 |
4.1.17 | 234 | 3/17/2023 |
4.1.16 | 243 | 3/16/2023 |
4.1.15 | 242 | 3/15/2023 |
4.1.14 | 805 | 3/9/2023 |
4.1.13 | 255 | 3/7/2023 |
4.1.12 | 298 | 2/10/2023 |
4.1.11 | 323 | 1/26/2023 |
4.1.10 | 346 | 1/22/2023 |
4.1.9 | 342 | 1/20/2023 |
4.1.8 | 328 | 1/18/2023 |
4.1.7 | 325 | 1/18/2023 |
4.1.6 | 321 | 1/17/2023 |
4.1.1 | 347 | 1/4/2023 |
4.1.0 | 336 | 12/30/2022 |
3.0.25 | 350 | 12/21/2022 |
3.0.24 | 365 | 11/18/2022 |
3.0.23 | 372 | 11/18/2022 |
3.0.22 | 367 | 11/15/2022 |
3.0.21 | 358 | 11/14/2022 |
3.0.20 | 395 | 11/13/2022 |
3.0.19 | 412 | 11/2/2022 |
3.0.18 | 395 | 11/2/2022 |
3.0.17 | 417 | 10/29/2022 |
3.0.16 | 406 | 10/29/2022 |
3.0.15 | 430 | 10/29/2022 |
2.0.6 | 459 | 9/20/2022 |
2.0.5 | 444 | 9/20/2022 |
2.0.3 | 472 | 9/20/2022 |
2.0.1 | 532 | 9/13/2022 |
2.0.0 | 457 | 8/19/2022 |
1.1.22 | 511 | 7/30/2022 |
1.1.21 | 474 | 7/29/2022 |
1.1.20 | 461 | 7/29/2022 |
1.1.19 | 500 | 7/29/2022 |
1.1.18 | 498 | 7/27/2022 |
1.1.17 | 499 | 7/27/2022 |
1.1.15 | 485 | 7/25/2022 |
1.1.14 | 486 | 7/25/2022 |
1.1.13 | 476 | 7/22/2022 |
1.1.12 | 472 | 7/19/2022 |
1.1.11 | 493 | 7/19/2022 |
1.1.10 | 488 | 7/19/2022 |
1.1.9 | 506 | 7/19/2022 |
1.1.8 | 479 | 7/18/2022 |
1.1.7 | 506 | 7/18/2022 |
1.1.6 | 472 | 7/18/2022 |
1.0.4 | 489 | 7/17/2022 |
1.0.3 | 493 | 7/17/2022 |
1.0.2 | 490 | 7/12/2022 |
1.0.1 | 552 | 7/12/2022 |
1.0.0 | 504 | 7/8/2022 |
0.10.7 | 502 | 7/8/2022 |
0.9.11 | 478 | 7/1/2022 |
0.9.10 | 482 | 6/29/2022 |
0.9.9 | 493 | 6/29/2022 |