Rystem.Queue
4.1.10
See the version list below for details.
dotnet add package Rystem.Queue --version 4.1.10
NuGet\Install-Package Rystem.Queue -Version 4.1.10
<PackageReference Include="Rystem.Queue" Version="4.1.10" />
paket add Rystem.Queue --version 4.1.10
#r "nuget: Rystem.Queue, 4.1.10"
// Install Rystem.Queue as a Cake Addin #addin nuget:?package=Rystem.Queue&version=4.1.10 // Install Rystem.Queue as a Cake Tool #tool nuget:?package=Rystem.Queue&version=4.1.10
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. |
-
net7.0
- Rystem.BackgroundJob (>= 4.1.10)
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.0.0-rc.1 | 69 | 10/18/2024 |
6.2.0 | 175,784 | 10/10/2024 |
6.1.1 | 80 | 10/9/2024 |
6.1.0 | 47,817 | 9/29/2024 |
6.0.24 | 118 | 9/11/2024 |
6.0.23 | 115 | 7/18/2024 |
6.0.21 | 107 | 6/18/2024 |
6.0.20 | 115 | 6/16/2024 |
6.0.19 | 97 | 6/14/2024 |
6.0.18 | 92 | 6/14/2024 |
6.0.17 | 110 | 6/14/2024 |
6.0.16 | 95 | 6/10/2024 |
6.0.15 | 101 | 6/9/2024 |
6.0.14 | 117 | 5/24/2024 |
6.0.13 | 114 | 5/23/2024 |
6.0.12 | 95 | 5/23/2024 |
6.0.11 | 109 | 5/20/2024 |
6.0.9 | 105 | 5/20/2024 |
6.0.7 | 94 | 5/18/2024 |
6.0.6 | 110 | 5/10/2024 |
6.0.5 | 110 | 5/10/2024 |
6.0.4 | 108 | 4/3/2024 |
6.0.3 | 112 | 3/25/2024 |
6.0.2 | 2,282 | 3/11/2024 |
6.0.0 | 216 | 11/21/2023 |
6.0.0-rc.6 | 97 | 10/25/2023 |
6.0.0-rc.5 | 75 | 10/25/2023 |
6.0.0-rc.4 | 68 | 10/23/2023 |
6.0.0-rc.3 | 64 | 10/19/2023 |
6.0.0-rc.2 | 71 | 10/18/2023 |
6.0.0-rc.1 | 71 | 10/16/2023 |
5.0.20 | 158 | 9/25/2023 |
5.0.19 | 152 | 9/10/2023 |
5.0.18 | 137 | 9/6/2023 |
5.0.17 | 142 | 9/6/2023 |
5.0.16 | 132 | 9/5/2023 |
5.0.15 | 131 | 9/5/2023 |
5.0.14 | 126 | 9/5/2023 |
5.0.13 | 125 | 9/1/2023 |
5.0.12 | 132 | 8/31/2023 |
5.0.11 | 128 | 8/30/2023 |
5.0.10 | 160 | 8/29/2023 |
5.0.9 | 152 | 8/24/2023 |
5.0.8 | 142 | 8/24/2023 |
5.0.7 | 136 | 8/23/2023 |
5.0.6 | 146 | 8/21/2023 |
5.0.5 | 135 | 8/21/2023 |
5.0.4 | 152 | 8/16/2023 |
5.0.3 | 158 | 8/2/2023 |
5.0.2 | 155 | 8/2/2023 |
5.0.1 | 156 | 8/1/2023 |
5.0.0 | 171 | 7/31/2023 |
4.1.26 | 180 | 7/20/2023 |
4.1.25 | 170 | 7/16/2023 |
4.1.24 | 235 | 6/13/2023 |
4.1.23 | 150 | 6/13/2023 |
4.1.22 | 150 | 5/30/2023 |
4.1.21 | 149 | 5/20/2023 |
4.1.20 | 315,144 | 4/19/2023 |
4.1.19 | 94,880 | 3/20/2023 |
4.1.18 | 210 | 3/20/2023 |
4.1.17 | 199 | 3/17/2023 |
4.1.16 | 203 | 3/16/2023 |
4.1.15 | 198 | 3/15/2023 |
4.1.14 | 766 | 3/9/2023 |
4.1.13 | 214 | 3/7/2023 |
4.1.12 | 262 | 2/10/2023 |
4.1.11 | 276 | 1/26/2023 |
4.1.10 | 302 | 1/22/2023 |
4.1.9 | 295 | 1/20/2023 |
4.1.8 | 287 | 1/18/2023 |
4.1.7 | 280 | 1/18/2023 |
4.1.6 | 276 | 1/17/2023 |
4.1.1 | 305 | 1/4/2023 |
4.1.0 | 293 | 12/30/2022 |
3.0.25 | 302 | 12/21/2022 |
3.0.24 | 323 | 11/18/2022 |
3.0.23 | 324 | 11/18/2022 |
3.0.22 | 325 | 11/15/2022 |
3.0.21 | 315 | 11/14/2022 |
3.0.20 | 346 | 11/13/2022 |
3.0.19 | 366 | 11/2/2022 |
3.0.18 | 352 | 11/2/2022 |
3.0.17 | 372 | 10/29/2022 |
3.0.16 | 365 | 10/29/2022 |
3.0.15 | 378 | 10/29/2022 |
2.0.6 | 412 | 9/20/2022 |
2.0.5 | 400 | 9/20/2022 |
2.0.3 | 428 | 9/20/2022 |
2.0.1 | 486 | 9/13/2022 |
2.0.0 | 412 | 8/19/2022 |
1.1.22 | 460 | 7/30/2022 |
1.1.21 | 418 | 7/29/2022 |
1.1.20 | 413 | 7/29/2022 |
1.1.19 | 438 | 7/29/2022 |
1.1.18 | 442 | 7/27/2022 |
1.1.17 | 444 | 7/27/2022 |
1.1.15 | 436 | 7/25/2022 |
1.1.14 | 437 | 7/25/2022 |
1.1.13 | 428 | 7/22/2022 |
1.1.12 | 419 | 7/19/2022 |
1.1.11 | 440 | 7/19/2022 |
1.1.10 | 433 | 7/19/2022 |
1.1.9 | 456 | 7/19/2022 |
1.1.8 | 432 | 7/18/2022 |
1.1.7 | 450 | 7/18/2022 |
1.1.6 | 412 | 7/18/2022 |
1.0.4 | 441 | 7/17/2022 |
1.0.3 | 435 | 7/17/2022 |
1.0.2 | 438 | 7/12/2022 |
1.0.1 | 495 | 7/12/2022 |
1.0.0 | 455 | 7/8/2022 |
0.10.7 | 451 | 7/8/2022 |
0.9.11 | 430 | 7/1/2022 |
0.9.10 | 434 | 6/29/2022 |
0.9.9 | 440 | 6/29/2022 |