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"
#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.2 | 177,384 | 5/29/2025 |
9.1.1 | 97,703 | 5/2/2025 |
9.0.32 | 186,519 | 4/15/2025 |
9.0.31 | 5,691 | 4/2/2025 |
9.0.30 | 88,742 | 3/26/2025 |
9.0.29 | 8,918 | 3/18/2025 |
9.0.28 | 160 | 3/17/2025 |
9.0.27 | 161 | 3/16/2025 |
9.0.26 | 168 | 3/13/2025 |
9.0.25 | 52,012 | 3/9/2025 |
9.0.20 | 19,468 | 3/6/2025 |
9.0.19 | 214 | 3/6/2025 |
9.0.18 | 226 | 3/4/2025 |
9.0.17 | 107 | 3/1/2025 |
9.0.16 | 104 | 3/1/2025 |
9.0.15 | 75,445 | 2/22/2025 |
9.0.14 | 22,486 | 2/18/2025 |
9.0.13 | 127 | 2/9/2025 |
9.0.12 | 217,520 | 1/13/2025 |
9.0.11 | 23,969 | 1/9/2025 |
9.0.10 | 97 | 1/9/2025 |
9.0.9 | 3,970 | 1/7/2025 |
9.0.8 | 12,459 | 1/6/2025 |
9.0.7 | 112 | 1/6/2025 |
9.0.4 | 92,280 | 12/23/2024 |
9.0.3 | 127 | 12/22/2024 |
9.0.2 | 10,665 | 12/21/2024 |
9.0.1 | 1,148 | 12/21/2024 |
9.0.0 | 172,918 | 11/16/2024 |
9.0.0-rc.1 | 91 | 10/18/2024 |
6.2.0 | 219,952 | 10/10/2024 |
6.1.1 | 125 | 10/9/2024 |
6.1.0 | 47,854 | 9/29/2024 |
6.0.24 | 159 | 9/11/2024 |
6.0.23 | 153 | 7/18/2024 |
6.0.21 | 144 | 6/18/2024 |
6.0.20 | 150 | 6/16/2024 |
6.0.19 | 134 | 6/14/2024 |
6.0.18 | 127 | 6/14/2024 |
6.0.17 | 142 | 6/14/2024 |
6.0.16 | 130 | 6/10/2024 |
6.0.15 | 131 | 6/9/2024 |
6.0.14 | 153 | 5/24/2024 |
6.0.13 | 144 | 5/23/2024 |
6.0.12 | 134 | 5/23/2024 |
6.0.11 | 140 | 5/20/2024 |
6.0.9 | 136 | 5/20/2024 |
6.0.7 | 125 | 5/18/2024 |
6.0.6 | 145 | 5/10/2024 |
6.0.5 | 141 | 5/10/2024 |
6.0.4 | 141 | 4/3/2024 |
6.0.3 | 146 | 3/25/2024 |
6.0.2 | 3,657 | 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 | 181 | 9/25/2023 |
5.0.19 | 178 | 9/10/2023 |
5.0.18 | 166 | 9/6/2023 |
5.0.17 | 168 | 9/6/2023 |
5.0.16 | 162 | 9/5/2023 |
5.0.15 | 161 | 9/5/2023 |
5.0.14 | 160 | 9/5/2023 |
5.0.13 | 151 | 9/1/2023 |
5.0.12 | 158 | 8/31/2023 |
5.0.11 | 154 | 8/30/2023 |
5.0.10 | 187 | 8/29/2023 |
5.0.9 | 179 | 8/24/2023 |
5.0.8 | 167 | 8/24/2023 |
5.0.7 | 169 | 8/23/2023 |
5.0.6 | 171 | 8/21/2023 |
5.0.5 | 159 | 8/21/2023 |
5.0.4 | 178 | 8/16/2023 |
5.0.3 | 194 | 8/2/2023 |
5.0.2 | 183 | 8/2/2023 |
5.0.1 | 187 | 8/1/2023 |
5.0.0 | 201 | 7/31/2023 |
4.1.26 | 214 | 7/20/2023 |
4.1.25 | 204 | 7/16/2023 |
4.1.24 | 273 | 6/13/2023 |
4.1.23 | 190 | 6/13/2023 |
4.1.22 | 189 | 5/30/2023 |
4.1.21 | 185 | 5/20/2023 |
4.1.20 | 315,180 | 4/19/2023 |
4.1.19 | 94,919 | 3/20/2023 |
4.1.18 | 254 | 3/20/2023 |
4.1.17 | 233 | 3/17/2023 |
4.1.16 | 242 | 3/16/2023 |
4.1.15 | 240 | 3/15/2023 |
4.1.14 | 804 | 3/9/2023 |
4.1.13 | 254 | 3/7/2023 |
4.1.12 | 297 | 2/10/2023 |
4.1.11 | 321 | 1/26/2023 |
4.1.10 | 343 | 1/22/2023 |
4.1.9 | 340 | 1/20/2023 |
4.1.8 | 327 | 1/18/2023 |
4.1.7 | 323 | 1/18/2023 |
4.1.6 | 318 | 1/17/2023 |
4.1.1 | 346 | 1/4/2023 |
4.1.0 | 335 | 12/30/2022 |
3.0.25 | 349 | 12/21/2022 |
3.0.24 | 364 | 11/18/2022 |
3.0.23 | 371 | 11/18/2022 |
3.0.22 | 366 | 11/15/2022 |
3.0.21 | 356 | 11/14/2022 |
3.0.20 | 394 | 11/13/2022 |
3.0.19 | 411 | 11/2/2022 |
3.0.18 | 394 | 11/2/2022 |
3.0.17 | 416 | 10/29/2022 |
3.0.16 | 405 | 10/29/2022 |
3.0.15 | 429 | 10/29/2022 |
2.0.6 | 458 | 9/20/2022 |
2.0.5 | 443 | 9/20/2022 |
2.0.3 | 471 | 9/20/2022 |
2.0.1 | 531 | 9/13/2022 |
2.0.0 | 456 | 8/19/2022 |
1.1.22 | 510 | 7/30/2022 |
1.1.21 | 473 | 7/29/2022 |
1.1.20 | 460 | 7/29/2022 |
1.1.19 | 498 | 7/29/2022 |
1.1.18 | 496 | 7/27/2022 |
1.1.17 | 497 | 7/27/2022 |
1.1.15 | 484 | 7/25/2022 |
1.1.14 | 485 | 7/25/2022 |
1.1.13 | 475 | 7/22/2022 |
1.1.12 | 469 | 7/19/2022 |
1.1.11 | 492 | 7/19/2022 |
1.1.10 | 485 | 7/19/2022 |
1.1.9 | 505 | 7/19/2022 |
1.1.8 | 478 | 7/18/2022 |
1.1.7 | 505 | 7/18/2022 |
1.1.6 | 471 | 7/18/2022 |
1.0.4 | 488 | 7/17/2022 |
1.0.3 | 491 | 7/17/2022 |
1.0.2 | 487 | 7/12/2022 |
1.0.1 | 550 | 7/12/2022 |
1.0.0 | 502 | 7/8/2022 |
0.10.7 | 501 | 7/8/2022 |
0.9.11 | 477 | 7/1/2022 |
0.9.10 | 481 | 6/29/2022 |
0.9.9 | 492 | 6/29/2022 |