Rystem.Queue
5.0.4
See the version list below for details.
dotnet add package Rystem.Queue --version 5.0.4
NuGet\Install-Package Rystem.Queue -Version 5.0.4
<PackageReference Include="Rystem.Queue" Version="5.0.4" />
<PackageVersion Include="Rystem.Queue" Version="5.0.4" />
<PackageReference Include="Rystem.Queue" />
paket add Rystem.Queue --version 5.0.4
#r "nuget: Rystem.Queue, 5.0.4"
#:package Rystem.Queue@5.0.4
#addin nuget:?package=Rystem.Queue&version=5.0.4
#tool nuget:?package=Rystem.Queue&version=5.0.4
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 | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. 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. |
-
net7.0
- Rystem.BackgroundJob (>= 5.0.4)
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.3 | 196 | 9/2/2025 |
| 9.1.2 | 683,247 | 5/29/2025 |
| 9.1.1 | 97,754 | 5/2/2025 |
| 9.0.32 | 186,571 | 4/15/2025 |
| 9.0.31 | 5,743 | 4/2/2025 |
| 9.0.30 | 88,792 | 3/26/2025 |
| 9.0.29 | 8,968 | 3/18/2025 |
| 9.0.28 | 199 | 3/17/2025 |
| 9.0.27 | 203 | 3/16/2025 |
| 9.0.26 | 231 | 3/13/2025 |
| 9.0.25 | 52,066 | 3/9/2025 |
| 9.0.20 | 19,508 | 3/6/2025 |
| 9.0.19 | 255 | 3/6/2025 |
| 9.0.18 | 290 | 3/4/2025 |
| 9.0.17 | 159 | 3/1/2025 |
| 9.0.16 | 156 | 3/1/2025 |
| 9.0.15 | 75,495 | 2/22/2025 |
| 9.0.14 | 22,536 | 2/18/2025 |
| 9.0.13 | 177 | 2/9/2025 |
| 9.0.12 | 217,559 | 1/13/2025 |
| 9.0.11 | 24,017 | 1/9/2025 |
| 9.0.10 | 137 | 1/9/2025 |
| 9.0.9 | 4,011 | 1/7/2025 |
| 9.0.8 | 12,514 | 1/6/2025 |
| 9.0.7 | 169 | 1/6/2025 |
| 9.0.4 | 92,319 | 12/23/2024 |
| 9.0.3 | 179 | 12/22/2024 |
| 9.0.2 | 10,707 | 12/21/2024 |
| 9.0.1 | 1,199 | 12/21/2024 |
| 9.0.0 | 172,957 | 11/16/2024 |
| 9.0.0-rc.1 | 102 | 10/18/2024 |
| 6.2.0 | 220,404 | 10/10/2024 |
| 6.1.1 | 195 | 10/9/2024 |
| 6.1.0 | 47,905 | 9/29/2024 |
| 6.0.24 | 208 | 9/11/2024 |
| 6.0.23 | 202 | 7/18/2024 |
| 6.0.21 | 194 | 6/18/2024 |
| 6.0.20 | 197 | 6/16/2024 |
| 6.0.19 | 183 | 6/14/2024 |
| 6.0.18 | 174 | 6/14/2024 |
| 6.0.17 | 184 | 6/14/2024 |
| 6.0.16 | 168 | 6/10/2024 |
| 6.0.15 | 181 | 6/9/2024 |
| 6.0.14 | 202 | 5/24/2024 |
| 6.0.13 | 193 | 5/23/2024 |
| 6.0.12 | 172 | 5/23/2024 |
| 6.0.11 | 177 | 5/20/2024 |
| 6.0.9 | 185 | 5/20/2024 |
| 6.0.7 | 162 | 5/18/2024 |
| 6.0.6 | 206 | 5/10/2024 |
| 6.0.5 | 188 | 5/10/2024 |
| 6.0.4 | 179 | 4/3/2024 |
| 6.0.3 | 193 | 3/25/2024 |
| 6.0.2 | 3,718 | 3/11/2024 |
| 6.0.0 | 265 | 11/21/2023 |
| 6.0.0-rc.6 | 131 | 10/25/2023 |
| 6.0.0-rc.5 | 107 | 10/25/2023 |
| 6.0.0-rc.4 | 100 | 10/23/2023 |
| 6.0.0-rc.3 | 103 | 10/19/2023 |
| 6.0.0-rc.2 | 121 | 10/18/2023 |
| 6.0.0-rc.1 | 103 | 10/16/2023 |
| 5.0.20 | 230 | 9/25/2023 |
| 5.0.19 | 224 | 9/10/2023 |
| 5.0.18 | 211 | 9/6/2023 |
| 5.0.17 | 205 | 9/6/2023 |
| 5.0.16 | 207 | 9/5/2023 |
| 5.0.15 | 209 | 9/5/2023 |
| 5.0.14 | 206 | 9/5/2023 |
| 5.0.13 | 216 | 9/1/2023 |
| 5.0.12 | 200 | 8/31/2023 |
| 5.0.11 | 199 | 8/30/2023 |
| 5.0.10 | 231 | 8/29/2023 |
| 5.0.9 | 246 | 8/24/2023 |
| 5.0.8 | 216 | 8/24/2023 |
| 5.0.7 | 217 | 8/23/2023 |
| 5.0.6 | 220 | 8/21/2023 |
| 5.0.5 | 207 | 8/21/2023 |
| 5.0.4 | 218 | 8/16/2023 |
| 5.0.3 | 252 | 8/2/2023 |
| 5.0.2 | 232 | 8/2/2023 |
| 5.0.1 | 238 | 8/1/2023 |
| 5.0.0 | 239 | 7/31/2023 |
| 4.1.26 | 269 | 7/20/2023 |
| 4.1.25 | 243 | 7/16/2023 |
| 4.1.24 | 319 | 6/13/2023 |
| 4.1.23 | 250 | 6/13/2023 |
| 4.1.22 | 244 | 5/30/2023 |
| 4.1.21 | 243 | 5/20/2023 |
| 4.1.20 | 315,244 | 4/19/2023 |
| 4.1.19 | 94,979 | 3/20/2023 |
| 4.1.18 | 319 | 3/20/2023 |
| 4.1.17 | 294 | 3/17/2023 |
| 4.1.16 | 300 | 3/16/2023 |
| 4.1.15 | 316 | 3/15/2023 |
| 4.1.14 | 868 | 3/9/2023 |
| 4.1.13 | 317 | 3/7/2023 |
| 4.1.12 | 357 | 2/10/2023 |
| 4.1.11 | 397 | 1/26/2023 |
| 4.1.10 | 422 | 1/22/2023 |
| 4.1.9 | 417 | 1/20/2023 |
| 4.1.8 | 389 | 1/18/2023 |
| 4.1.7 | 408 | 1/18/2023 |
| 4.1.6 | 370 | 1/17/2023 |
| 4.1.1 | 406 | 1/4/2023 |
| 4.1.0 | 395 | 12/30/2022 |
| 3.0.25 | 411 | 12/21/2022 |
| 3.0.24 | 423 | 11/18/2022 |
| 3.0.23 | 432 | 11/18/2022 |
| 3.0.22 | 426 | 11/15/2022 |
| 3.0.21 | 434 | 11/14/2022 |
| 3.0.20 | 460 | 11/13/2022 |
| 3.0.19 | 475 | 11/2/2022 |
| 3.0.18 | 456 | 11/2/2022 |
| 3.0.17 | 478 | 10/29/2022 |
| 3.0.16 | 468 | 10/29/2022 |
| 3.0.15 | 480 | 10/29/2022 |
| 2.0.6 | 523 | 9/20/2022 |
| 2.0.5 | 506 | 9/20/2022 |
| 2.0.3 | 536 | 9/20/2022 |
| 2.0.1 | 599 | 9/13/2022 |
| 2.0.0 | 525 | 8/19/2022 |
| 1.1.22 | 564 | 7/30/2022 |
| 1.1.21 | 558 | 7/29/2022 |
| 1.1.20 | 525 | 7/29/2022 |
| 1.1.19 | 576 | 7/29/2022 |
| 1.1.18 | 581 | 7/27/2022 |
| 1.1.17 | 576 | 7/27/2022 |
| 1.1.15 | 540 | 7/25/2022 |
| 1.1.14 | 552 | 7/25/2022 |
| 1.1.13 | 542 | 7/22/2022 |
| 1.1.12 | 551 | 7/19/2022 |
| 1.1.11 | 560 | 7/19/2022 |
| 1.1.10 | 558 | 7/19/2022 |
| 1.1.9 | 562 | 7/19/2022 |
| 1.1.8 | 543 | 7/18/2022 |
| 1.1.7 | 573 | 7/18/2022 |
| 1.1.6 | 527 | 7/18/2022 |
| 1.0.4 | 552 | 7/17/2022 |
| 1.0.3 | 550 | 7/17/2022 |
| 1.0.2 | 577 | 7/12/2022 |
| 1.0.1 | 635 | 7/12/2022 |
| 1.0.0 | 573 | 7/8/2022 |
| 0.10.7 | 554 | 7/8/2022 |
| 0.9.11 | 542 | 7/1/2022 |
| 0.9.10 | 551 | 6/29/2022 |
| 0.9.9 | 559 | 6/29/2022 |