Soenneker.Utils.RateLimiting.Factory 2.1.19

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.RateLimiting.Factory --version 2.1.19                
NuGet\Install-Package Soenneker.Utils.RateLimiting.Factory -Version 2.1.19                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Utils.RateLimiting.Factory" Version="2.1.19" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.RateLimiting.Factory --version 2.1.19                
#r "nuget: Soenneker.Utils.RateLimiting.Factory, 2.1.19"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Soenneker.Utils.RateLimiting.Factory as a Cake Addin
#addin nuget:?package=Soenneker.Utils.RateLimiting.Factory&version=2.1.19

// Install Soenneker.Utils.RateLimiting.Factory as a Cake Tool
#tool nuget:?package=Soenneker.Utils.RateLimiting.Factory&version=2.1.19                

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.RateLimiting.Factory

An async thread-safe singleton dictionary for Soenneker.Utils.RateLimiting.Executors, designed to manage the rate at which tasks are executed.

Installation

dotnet add package Soenneker.Utils.RateLimiting.Factory

Usage

  1. Register IRateLimitingFactory within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddRateLimitingFactoryAsSingleton();
}
  1. Inject IRateLimitingFactory, and retrieve a RateLimitingFactory.

Example:

public class TestClass
{
    IRateLimitingFactory _factory;

    public TestClass(IRateLimitingFactory factory)
    {
        _factory = factory;
    }

    public async ValueTask ExecuteTasks()
    {
        RateLimitingExecutor rateLimitingExecutor = await _factory.Get("test", TimeSpan.FromSeconds(2));

        for (int i = 0; i < 5; i++)
        {
            await rateLimitingExecutor.Execute(async ct =>
            {
                Logger.LogInformation($"Executing Task {i + 1} at {DateTime.Now:HH:mm:ss}");

                await Task.Delay(100, ct); // Simulate some work
            });
        }
    }
}

Console Output

Executing Task 1 at 14:00:00
Executing Task 2 at 14:00:02
Executing Task 3 at 14:00:04
Executing Task 4 at 14:00:06
Executing Task 5 at 14:00:08
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Soenneker.Utils.RateLimiting.Factory:

Package Downloads
Soenneker.Validators.Yahoo.Exists

A validation module checking for Yahoo account existence

Soenneker.Validators.Gmail.Exists

A validation module checking for Gmail account existence

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.120 38 11/29/2024
3.0.119 32 11/29/2024
3.0.118 26 11/29/2024
3.0.117 50 11/29/2024
3.0.116 27 11/29/2024
3.0.115 42 11/29/2024
3.0.114 41 11/29/2024
3.0.113 115 11/21/2024
3.0.112 88 11/21/2024
3.0.111 66 11/21/2024
3.0.110 72 11/21/2024
3.0.109 98 11/21/2024
3.0.108 77 11/21/2024
3.0.107 172 11/20/2024
3.0.106 82 11/20/2024
3.0.105 72 11/20/2024
3.0.104 91 11/20/2024
3.0.103 71 11/20/2024
3.0.102 66 11/20/2024
3.0.101 71 11/20/2024
3.0.100 70 11/19/2024
3.0.99 70 11/19/2024
3.0.98 64 11/19/2024
3.0.97 333 11/19/2024
3.0.96 195 11/19/2024
3.0.95 61 11/19/2024
3.0.94 61 11/19/2024
3.0.93 134 11/19/2024
3.0.92 59 11/19/2024
3.0.91 89 11/19/2024
3.0.90 67 11/19/2024
3.0.89 215 11/15/2024
3.0.88 93 11/15/2024
3.0.87 62 11/15/2024
3.0.86 69 11/14/2024
3.0.85 60 11/14/2024
3.0.84 107 11/14/2024
3.0.83 63 11/14/2024
3.0.82 70 11/14/2024
3.0.81 65 11/14/2024
3.0.80 114 11/14/2024
3.0.79 112 11/14/2024
3.0.78 74 11/14/2024
3.0.77 65 11/14/2024
3.0.76 155 11/14/2024
3.0.75 70 11/14/2024
3.0.74 109 11/14/2024
3.0.73 146 11/14/2024
3.0.72 69 11/14/2024
3.0.71 122 11/14/2024
3.0.70 64 11/14/2024
3.0.69 88 11/14/2024
3.0.68 75 11/14/2024
3.0.67 159 11/14/2024
3.0.66 67 11/14/2024
3.0.65 68 11/14/2024
2.1.64 247 11/13/2024
2.1.63 85 11/13/2024
2.1.62 90 11/13/2024
2.1.61 63 11/13/2024
2.1.60 58 11/13/2024
2.1.59 206 11/13/2024
2.1.58 69 11/13/2024
2.1.57 71 11/13/2024
2.1.56 104 11/12/2024
2.1.55 65 11/12/2024
2.1.54 487 11/9/2024
2.1.53 99 11/9/2024
2.1.52 74 11/9/2024
2.1.51 119 11/9/2024
2.1.50 77 11/9/2024
2.1.49 75 11/9/2024
2.1.48 76 11/9/2024
2.1.47 207 11/9/2024
2.1.46 190 11/8/2024
2.1.45 76 11/8/2024
2.1.44 84 11/8/2024
2.1.43 100 11/8/2024
2.1.42 80 11/8/2024
2.1.41 191 11/8/2024
2.1.40 76 11/8/2024
2.1.39 73 11/8/2024
2.1.38 167 11/8/2024
2.1.37 71 11/8/2024
2.1.36 230 11/6/2024
2.1.35 118 11/6/2024
2.1.34 257 11/1/2024
2.1.33 104 11/1/2024
2.1.32 76 11/1/2024
2.1.31 103 11/1/2024
2.1.30 135 11/1/2024
2.1.29 134 11/1/2024
2.1.28 78 11/1/2024
2.1.26 202 10/29/2024
2.1.25 71 10/29/2024
2.1.24 68 10/29/2024
2.1.23 81 10/29/2024
2.1.22 76 10/29/2024
2.1.21 70 10/29/2024
2.1.20 208 10/29/2024
2.1.19 178 10/29/2024
2.1.18 111 10/29/2024
2.1.17 76 10/29/2024
2.1.16 67 10/29/2024
2.1.15 193 10/28/2024
2.1.14 75 10/28/2024
2.1.13 69 10/28/2024
2.1.12 298 10/26/2024
2.1.11 73 10/26/2024
2.1.10 75 10/26/2024
2.1.9 68 10/26/2024
2.1.8 71 10/26/2024
2.1.7 68 10/26/2024
2.1.6 196 10/22/2024
2.1.5 75 10/22/2024
2.1.4 73 10/22/2024
2.1.3 76 10/22/2024
2.1.2 77 10/22/2024
2.1.1 75 10/22/2024