Rystem.Queue
10.0.1
dotnet add package Rystem.Queue --version 10.0.1
NuGet\Install-Package Rystem.Queue -Version 10.0.1
<PackageReference Include="Rystem.Queue" Version="10.0.1" />
<PackageVersion Include="Rystem.Queue" Version="10.0.1" />
<PackageReference Include="Rystem.Queue" />
paket add Rystem.Queue --version 10.0.1
#r "nuget: Rystem.Queue, 10.0.1"
#:package Rystem.Queue@10.0.1
#addin nuget:?package=Rystem.Queue&version=10.0.1
#tool nuget:?package=Rystem.Queue&version=10.0.1
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 | net10.0 is compatible. 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. |
-
net10.0
- Rystem.BackgroundJob (>= 10.0.1)
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 |
|---|---|---|
| 10.0.1 | 256 | 11/12/2025 |
| 9.1.3 | 212 | 9/2/2025 |
| 9.1.2 | 764,452 | 5/29/2025 |
| 9.1.1 | 97,760 | 5/2/2025 |
| 9.0.32 | 186,578 | 4/15/2025 |
| 9.0.31 | 5,749 | 4/2/2025 |
| 9.0.30 | 88,799 | 3/26/2025 |
| 9.0.29 | 8,975 | 3/18/2025 |
| 9.0.28 | 206 | 3/17/2025 |
| 9.0.27 | 210 | 3/16/2025 |
| 9.0.26 | 239 | 3/13/2025 |
| 9.0.25 | 52,073 | 3/9/2025 |
| 9.0.20 | 19,514 | 3/6/2025 |
| 9.0.19 | 262 | 3/6/2025 |
| 9.0.18 | 297 | 3/4/2025 |
| 9.0.17 | 166 | 3/1/2025 |
| 9.0.16 | 163 | 3/1/2025 |
| 9.0.15 | 75,502 | 2/22/2025 |
| 9.0.14 | 22,542 | 2/18/2025 |
| 9.0.13 | 183 | 2/9/2025 |
| 9.0.12 | 217,565 | 1/13/2025 |
| 9.0.11 | 24,023 | 1/9/2025 |
| 9.0.10 | 143 | 1/9/2025 |
| 9.0.9 | 4,017 | 1/7/2025 |
| 9.0.8 | 12,521 | 1/6/2025 |
| 9.0.7 | 179 | 1/6/2025 |
| 9.0.4 | 92,325 | 12/23/2024 |
| 9.0.3 | 185 | 12/22/2024 |
| 9.0.2 | 10,713 | 12/21/2024 |
| 9.0.1 | 1,205 | 12/21/2024 |
| 9.0.0 | 172,963 | 11/16/2024 |
| 9.0.0-rc.1 | 105 | 10/18/2024 |
| 6.2.0 | 220,460 | 10/10/2024 |
| 6.1.1 | 202 | 10/9/2024 |
| 6.1.0 | 47,911 | 9/29/2024 |
| 6.0.24 | 214 | 9/11/2024 |
| 6.0.23 | 208 | 7/18/2024 |
| 6.0.21 | 200 | 6/18/2024 |
| 6.0.20 | 204 | 6/16/2024 |
| 6.0.19 | 189 | 6/14/2024 |
| 6.0.18 | 180 | 6/14/2024 |
| 6.0.17 | 190 | 6/14/2024 |
| 6.0.16 | 174 | 6/10/2024 |
| 6.0.15 | 187 | 6/9/2024 |
| 6.0.14 | 208 | 5/24/2024 |
| 6.0.13 | 200 | 5/23/2024 |
| 6.0.12 | 178 | 5/23/2024 |
| 6.0.11 | 183 | 5/20/2024 |
| 6.0.9 | 191 | 5/20/2024 |
| 6.0.7 | 170 | 5/18/2024 |
| 6.0.6 | 216 | 5/10/2024 |
| 6.0.5 | 194 | 5/10/2024 |
| 6.0.4 | 185 | 4/3/2024 |
| 6.0.3 | 200 | 3/25/2024 |
| 6.0.2 | 3,724 | 3/11/2024 |
| 6.0.0 | 268 | 11/21/2023 |
| 6.0.0-rc.6 | 133 | 10/25/2023 |
| 6.0.0-rc.5 | 109 | 10/25/2023 |
| 6.0.0-rc.4 | 102 | 10/23/2023 |
| 6.0.0-rc.3 | 105 | 10/19/2023 |
| 6.0.0-rc.2 | 125 | 10/18/2023 |
| 6.0.0-rc.1 | 105 | 10/16/2023 |
| 5.0.20 | 233 | 9/25/2023 |
| 5.0.19 | 226 | 9/10/2023 |
| 5.0.18 | 213 | 9/6/2023 |
| 5.0.17 | 207 | 9/6/2023 |
| 5.0.16 | 209 | 9/5/2023 |
| 5.0.15 | 211 | 9/5/2023 |
| 5.0.14 | 211 | 9/5/2023 |
| 5.0.13 | 221 | 9/1/2023 |
| 5.0.12 | 202 | 8/31/2023 |
| 5.0.11 | 201 | 8/30/2023 |
| 5.0.10 | 233 | 8/29/2023 |
| 5.0.9 | 249 | 8/24/2023 |
| 5.0.8 | 218 | 8/24/2023 |
| 5.0.7 | 219 | 8/23/2023 |
| 5.0.6 | 222 | 8/21/2023 |
| 5.0.5 | 209 | 8/21/2023 |
| 5.0.4 | 220 | 8/16/2023 |
| 5.0.3 | 255 | 8/2/2023 |
| 5.0.2 | 234 | 8/2/2023 |
| 5.0.1 | 240 | 8/1/2023 |
| 5.0.0 | 241 | 7/31/2023 |
| 4.1.26 | 271 | 7/20/2023 |
| 4.1.25 | 245 | 7/16/2023 |
| 4.1.24 | 321 | 6/13/2023 |
| 4.1.23 | 252 | 6/13/2023 |
| 4.1.22 | 248 | 5/30/2023 |
| 4.1.21 | 247 | 5/20/2023 |
| 4.1.20 | 315,248 | 4/19/2023 |
| 4.1.19 | 94,984 | 3/20/2023 |
| 4.1.18 | 325 | 3/20/2023 |
| 4.1.17 | 298 | 3/17/2023 |
| 4.1.16 | 304 | 3/16/2023 |
| 4.1.15 | 322 | 3/15/2023 |
| 4.1.14 | 872 | 3/9/2023 |
| 4.1.13 | 321 | 3/7/2023 |
| 4.1.12 | 362 | 2/10/2023 |
| 4.1.11 | 404 | 1/26/2023 |
| 4.1.10 | 428 | 1/22/2023 |
| 4.1.9 | 425 | 1/20/2023 |
| 4.1.8 | 393 | 1/18/2023 |
| 4.1.7 | 413 | 1/18/2023 |
| 4.1.6 | 374 | 1/17/2023 |
| 4.1.1 | 410 | 1/4/2023 |
| 4.1.0 | 399 | 12/30/2022 |
| 3.0.25 | 415 | 12/21/2022 |
| 3.0.24 | 427 | 11/18/2022 |
| 3.0.23 | 436 | 11/18/2022 |
| 3.0.22 | 430 | 11/15/2022 |
| 3.0.21 | 439 | 11/14/2022 |
| 3.0.20 | 464 | 11/13/2022 |
| 3.0.19 | 479 | 11/2/2022 |
| 3.0.18 | 460 | 11/2/2022 |
| 3.0.17 | 482 | 10/29/2022 |
| 3.0.16 | 472 | 10/29/2022 |
| 3.0.15 | 484 | 10/29/2022 |
| 2.0.6 | 527 | 9/20/2022 |
| 2.0.5 | 510 | 9/20/2022 |
| 2.0.3 | 540 | 9/20/2022 |
| 2.0.1 | 603 | 9/13/2022 |
| 2.0.0 | 530 | 8/19/2022 |
| 1.1.22 | 568 | 7/30/2022 |
| 1.1.21 | 561 | 7/29/2022 |
| 1.1.20 | 528 | 7/29/2022 |
| 1.1.19 | 581 | 7/29/2022 |
| 1.1.18 | 586 | 7/27/2022 |
| 1.1.17 | 580 | 7/27/2022 |
| 1.1.15 | 543 | 7/25/2022 |
| 1.1.14 | 555 | 7/25/2022 |
| 1.1.13 | 546 | 7/22/2022 |
| 1.1.12 | 556 | 7/19/2022 |
| 1.1.11 | 564 | 7/19/2022 |
| 1.1.10 | 564 | 7/19/2022 |
| 1.1.9 | 566 | 7/19/2022 |
| 1.1.8 | 547 | 7/18/2022 |
| 1.1.7 | 577 | 7/18/2022 |
| 1.1.6 | 531 | 7/18/2022 |
| 1.0.4 | 556 | 7/17/2022 |
| 1.0.3 | 554 | 7/17/2022 |
| 1.0.2 | 582 | 7/12/2022 |
| 1.0.1 | 642 | 7/12/2022 |
| 1.0.0 | 578 | 7/8/2022 |
| 0.10.7 | 560 | 7/8/2022 |
| 0.9.11 | 547 | 7/1/2022 |
| 0.9.10 | 556 | 6/29/2022 |
| 0.9.9 | 564 | 6/29/2022 |