Soenneker.Utils.RateLimiting.Executor 3.0.346

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.RateLimiting.Executor --version 3.0.346
                    
NuGet\Install-Package Soenneker.Utils.RateLimiting.Executor -Version 3.0.346
                    
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.Executor" Version="3.0.346" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.RateLimiting.Executor" Version="3.0.346" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.RateLimiting.Executor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Utils.RateLimiting.Executor --version 3.0.346
                    
#r "nuget: Soenneker.Utils.RateLimiting.Executor, 3.0.346"
                    
#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.
#addin nuget:?package=Soenneker.Utils.RateLimiting.Executor&version=3.0.346
                    
Install Soenneker.Utils.RateLimiting.Executor as a Cake Addin
#tool nuget:?package=Soenneker.Utils.RateLimiting.Executor&version=3.0.346
                    
Install Soenneker.Utils.RateLimiting.Executor as a Cake Tool

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.Executor

A thread-safe utility designed to manage the rate at which tasks are executed, ensuring they are not run more frequently than a specified interval.

RateLimitingExecutor is ideal for interacting with rate-limited APIs or throttling the execution of resource-intensive tasks.

Sequential Execution

Tasks, ValueTasks, and Actions are executed one at a time. If the defined interval between executions has passed, the task runs immediately; otherwise, it waits until the interval elapses before proceeding.

⚠️ Important Notes:

  • This is not a background queue processor. Each method awaits the result of the asynchronous operation before continuing.

  • Asynchronous methods will not block the calling thread, but synchronous methods will block execution until it completes.

Want to use this with dependency injection?

Check out the singleton factory implementation: Soenneker.Utils.RateLimiting.Factory

Installation

dotnet add package Soenneker.Utils.RateLimiting.Executor

Example: Executing a Loop of Tasks with Rate Limiting

Below is an example demonstrating how to use the RateLimitingExecutor to execute a series of tasks while maintaining a rate limit.

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Soenneker.Utils.RateLimiting.Executor;

public class Program
{
    public static async Task Main(string[] args)
    {
        var rateLimitingExecutor = new RateLimitingExecutor(TimeSpan.FromSeconds(2));

        for (int i = 0; i < 5; i++)
        {
            await rateLimitingExecutor.Execute(async ct =>
            {
                Console.WriteLine($"Executing Task {i + 1} at {DateTime.Now:HH:mm:ss}");
                await Task.Delay(100); // 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 net9.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Soenneker.Utils.RateLimiting.Executor:

Package Downloads
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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.381 0 4/5/2025
3.0.380 0 4/5/2025
3.0.379 28 4/5/2025
3.0.378 33 4/5/2025
3.0.377 30 4/5/2025
3.0.376 51 4/4/2025
3.0.375 45 4/4/2025
3.0.374 266 4/3/2025
3.0.373 212 4/1/2025
3.0.372 179 4/1/2025
3.0.371 207 4/1/2025
3.0.370 183 3/31/2025
3.0.369 142 3/31/2025
3.0.368 209 3/31/2025
3.0.367 289 3/31/2025
3.0.366 159 3/29/2025
3.0.365 74 3/29/2025
3.0.364 103 3/29/2025
3.0.363 654 3/25/2025
3.0.362 478 3/25/2025
3.0.361 295 3/21/2025
3.0.360 150 3/21/2025
3.0.359 409 3/18/2025
3.0.358 225 3/18/2025
3.0.357 204 3/15/2025
3.0.356 57 3/15/2025
3.0.355 400 3/12/2025
3.0.354 176 3/12/2025
3.0.353 232 3/12/2025
3.0.352 162 3/11/2025
3.0.351 305 3/11/2025
3.0.350 225 3/11/2025
3.0.349 147 3/11/2025
3.0.348 405 3/11/2025
3.0.347 364 3/7/2025
3.0.346 331 3/7/2025
3.0.345 323 3/2/2025
3.0.344 135 3/2/2025
3.0.343 133 3/2/2025
3.0.342 86 3/2/2025
3.0.341 93 3/2/2025
3.0.340 204 3/2/2025
3.0.339 202 3/1/2025
3.0.338 82 3/1/2025
3.0.337 82 3/1/2025
3.0.336 408 3/1/2025
3.0.335 114 3/1/2025
3.0.334 72 3/1/2025
3.0.333 192 3/1/2025
3.0.332 78 3/1/2025
3.0.331 76 3/1/2025
3.0.330 301 2/25/2025
3.0.329 130 2/25/2025
3.0.328 172 2/25/2025
3.0.327 197 2/25/2025
3.0.326 149 2/25/2025
3.0.325 371 2/23/2025
3.0.324 144 2/23/2025
3.0.323 84 2/22/2025
3.0.322 348 2/22/2025
3.0.321 176 2/22/2025
3.0.320 126 2/22/2025
3.0.319 187 2/22/2025
3.0.318 87 2/21/2025
3.0.317 210 2/21/2025
3.0.316 261 2/21/2025
3.0.315 312 2/19/2025
3.0.314 122 2/19/2025
3.0.313 123 2/19/2025
3.0.312 100 2/18/2025
3.0.311 305 2/18/2025
3.0.310 161 2/18/2025
3.0.309 92 2/18/2025
3.0.308 443 2/14/2025
3.0.307 89 2/14/2025
3.0.306 168 2/13/2025
3.0.305 394 2/12/2025
3.0.304 111 2/12/2025
3.0.303 182 2/12/2025
3.0.302 184 2/11/2025
3.0.301 173 2/11/2025
3.0.300 301 2/11/2025
3.0.299 238 2/11/2025
3.0.298 90 2/11/2025
3.0.297 175 2/11/2025
3.0.296 192 2/10/2025
3.0.295 141 2/10/2025
3.0.294 188 2/10/2025
3.0.293 90 2/10/2025
3.0.292 94 2/10/2025
3.0.291 377 2/9/2025
3.0.290 104 2/8/2025
3.0.289 80 2/8/2025
3.0.288 84 2/8/2025
3.0.287 92 2/8/2025
3.0.286 310 2/8/2025
3.0.285 105 2/7/2025
3.0.284 137 2/7/2025
3.0.283 253 2/7/2025
3.0.282 90 2/7/2025
3.0.281 84 2/7/2025
3.0.280 83 2/7/2025
3.0.279 133 2/7/2025
3.0.278 81 2/7/2025
3.0.277 97 2/7/2025
3.0.276 375 2/6/2025
3.0.275 248 2/5/2025
3.0.274 160 2/5/2025
3.0.273 91 2/5/2025
3.0.272 102 2/5/2025
3.0.271 236 2/5/2025
3.0.270 96 2/5/2025
3.0.269 91 2/5/2025
3.0.268 500 1/28/2025
3.0.267 87 1/28/2025
3.0.266 101 1/28/2025
3.0.265 315 1/27/2025
3.0.264 95 1/27/2025
3.0.263 77 1/27/2025
3.0.262 73 1/27/2025
3.0.261 142 1/27/2025
3.0.260 99 1/27/2025
3.0.259 274 1/26/2025
3.0.258 100 1/26/2025
3.0.257 94 1/26/2025
3.0.256 77 1/26/2025
3.0.255 169 1/25/2025
3.0.254 203 1/25/2025
3.0.253 82 1/25/2025
3.0.252 78 1/25/2025
3.0.251 77 1/25/2025
3.0.250 195 1/25/2025
3.0.249 370 1/24/2025
3.0.248 121 1/24/2025
3.0.247 188 1/24/2025
3.0.246 147 1/24/2025
3.0.245 250 1/24/2025
3.0.244 183 1/23/2025
3.0.243 255 1/21/2025
3.0.242 89 1/21/2025
3.0.241 167 1/21/2025
3.0.240 94 1/21/2025
3.0.239 80 1/21/2025
3.0.238 276 1/21/2025
3.0.237 87 1/21/2025
3.0.236 82 1/21/2025
3.0.235 78 1/21/2025
3.0.234 83 1/21/2025
3.0.233 81 1/20/2025
3.0.232 97 1/20/2025
3.0.231 565 1/20/2025
3.0.230 91 1/20/2025
3.0.229 80 1/20/2025
3.0.228 235 1/20/2025
3.0.227 1,819 1/14/2025
3.0.226 61 1/14/2025
3.0.225 76 1/14/2025
3.0.224 134 1/14/2025
3.0.223 183 1/13/2025
3.0.222 171 1/13/2025
3.0.221 120 1/13/2025
3.0.220 74 1/13/2025
3.0.219 65 1/13/2025
3.0.218 210 1/12/2025
3.0.217 153 1/11/2025
3.0.216 126 1/11/2025
3.0.215 131 1/11/2025
3.0.214 84 1/11/2025
3.0.213 128 1/10/2025
3.0.212 85 1/10/2025
3.0.211 77 1/10/2025
3.0.210 79 1/10/2025
3.0.209 227 1/10/2025
3.0.208 89 1/10/2025
3.0.207 87 1/10/2025
3.0.206 632 1/3/2025
3.0.205 115 1/3/2025
3.0.204 162 1/3/2025
3.0.203 111 1/3/2025
3.0.202 189 1/2/2025
3.0.201 91 1/2/2025
3.0.200 88 1/2/2025
3.0.199 173 1/2/2025
3.0.198 87 1/2/2025
3.0.197 91 1/2/2025
3.0.196 393 1/1/2025
3.0.195 170 1/1/2025
3.0.194 102 1/1/2025
3.0.193 120 1/1/2025
3.0.192 205 1/1/2025
3.0.191 95 1/1/2025
3.0.190 100 1/1/2025
3.0.189 106 12/31/2024
3.0.188 94 12/31/2024
3.0.187 98 12/31/2024
3.0.186 99 12/31/2024
3.0.185 91 12/31/2024
3.0.184 151 12/31/2024
3.0.183 104 12/31/2024
3.0.182 389 12/31/2024
3.0.181 88 12/31/2024
3.0.180 249 12/31/2024
3.0.179 148 12/31/2024
3.0.178 92 12/31/2024
3.0.177 95 12/31/2024
3.0.176 94 12/31/2024
3.0.175 86 12/31/2024
3.0.174 115 12/30/2024
3.0.173 350 12/28/2024
3.0.172 109 12/28/2024
3.0.171 149 12/27/2024
3.0.170 92 12/27/2024
3.0.169 419 12/24/2024
3.0.168 188 12/24/2024
3.0.167 119 12/24/2024
3.0.166 97 12/24/2024
3.0.165 182 12/24/2024
3.0.164 86 12/24/2024
3.0.163 176 12/24/2024
3.0.162 80 12/24/2024
3.0.161 123 12/24/2024
3.0.160 98 12/23/2024
3.0.159 156 12/23/2024
3.0.158 169 12/23/2024
3.0.157 94 12/23/2024
3.0.156 265 12/23/2024
3.0.155 110 12/23/2024
3.0.154 251 12/22/2024
3.0.153 92 12/22/2024
3.0.152 89 12/22/2024
3.0.151 202 12/22/2024
3.0.150 96 12/22/2024
3.0.149 91 12/22/2024
3.0.148 86 12/22/2024
3.0.147 270 12/22/2024
3.0.146 94 12/22/2024
3.0.145 103 12/22/2024
3.0.144 92 12/22/2024
3.0.143 256 12/21/2024
3.0.142 91 12/21/2024
3.0.141 103 12/21/2024
3.0.140 88 12/21/2024
3.0.139 92 12/21/2024
3.0.138 85 12/21/2024
3.0.137 88 12/21/2024
3.0.136 93 12/21/2024
3.0.135 280 12/21/2024
3.0.134 175 12/21/2024
3.0.133 88 12/21/2024
3.0.132 91 12/21/2024
3.0.131 81 12/21/2024
3.0.130 237 12/21/2024
3.0.129 89 12/21/2024
3.0.128 141 12/20/2024
3.0.127 84 12/20/2024
3.0.126 165 12/20/2024
3.0.125 88 12/20/2024
3.0.124 188 12/20/2024
3.0.123 166 12/20/2024
3.0.122 92 12/20/2024
3.0.121 165 12/20/2024
3.0.120 189 12/19/2024
3.0.119 165 12/19/2024
3.0.118 98 12/19/2024
3.0.117 144 12/19/2024
3.0.116 90 12/18/2024
3.0.115 139 12/18/2024
3.0.114 195 12/17/2024
3.0.113 107 12/17/2024
3.0.112 70 12/17/2024
3.0.111 207 12/16/2024
3.0.110 288 12/10/2024
3.0.109 91 12/10/2024
3.0.108 172 12/10/2024
3.0.107 91 12/9/2024
3.0.106 174 12/9/2024
3.0.105 213 12/9/2024
3.0.104 87 12/9/2024
3.0.103 290 12/7/2024
3.0.102 113 12/6/2024
3.0.101 110 12/6/2024
3.0.100 106 12/6/2024
3.0.99 109 12/6/2024
3.0.97 135 12/6/2024
3.0.96 115 12/6/2024
3.0.95 93 12/6/2024
3.0.94 95 12/6/2024
3.0.93 95 12/6/2024
3.0.92 96 12/6/2024
3.0.91 130 12/6/2024
3.0.90 122 12/5/2024
3.0.89 119 12/5/2024
3.0.88 674 12/5/2024
3.0.87 135 12/5/2024
3.0.86 140 12/5/2024
3.0.85 185 12/5/2024
3.0.84 119 12/4/2024
3.0.83 141 12/4/2024
3.0.82 199 12/4/2024
3.0.81 185 12/4/2024
3.0.80 168 12/4/2024
3.0.79 96 12/3/2024
3.0.78 191 12/3/2024
3.0.77 191 12/3/2024
3.0.76 153 12/3/2024
3.0.75 85 12/3/2024
3.0.74 138 12/3/2024
3.0.73 84 12/3/2024
3.0.72 356 12/2/2024
3.0.71 146 12/2/2024
3.0.70 164 12/2/2024
3.0.69 91 12/2/2024
3.0.68 166 12/2/2024
3.0.67 211 12/1/2024
3.0.66 93 12/1/2024
3.0.65 249 12/1/2024
3.0.64 127 12/1/2024
3.0.63 199 11/29/2024
3.0.62 169 11/29/2024
3.0.61 257 11/21/2024
3.0.60 108 11/21/2024
3.0.59 257 11/20/2024
3.0.58 100 11/20/2024
3.0.57 121 11/20/2024
3.0.56 98 11/20/2024
3.0.55 100 11/20/2024
3.0.54 110 11/20/2024
3.0.53 105 11/19/2024
3.0.52 97 11/19/2024
3.0.51 93 11/19/2024
3.0.50 382 11/19/2024
3.0.49 87 11/19/2024
3.0.48 306 11/19/2024
3.0.47 93 11/19/2024
3.0.46 96 11/19/2024
3.0.45 293 11/15/2024
3.0.44 139 11/14/2024
3.0.43 93 11/14/2024
3.0.42 91 11/14/2024
3.0.41 138 11/14/2024
3.0.40 106 11/14/2024
3.0.39 217 11/14/2024
3.0.38 314 11/14/2024
3.0.37 158 11/14/2024
3.0.36 94 11/14/2024
3.0.35 96 11/14/2024
3.0.34 141 11/14/2024
3.0.33 97 11/14/2024
3.0.32 192 11/14/2024
2.1.31 294 11/13/2024
2.1.30 181 11/13/2024
2.1.29 257 11/13/2024
2.1.28 144 11/12/2024
2.1.27 88 11/12/2024
2.1.26 649 11/9/2024
2.1.25 180 11/9/2024
2.1.24 341 11/8/2024
2.1.23 104 11/8/2024
2.1.22 95 11/8/2024
2.1.21 289 11/8/2024
2.1.20 234 11/8/2024
2.1.19 262 11/6/2024
2.1.18 333 11/1/2024
2.1.17 95 11/1/2024
2.1.16 323 11/1/2024
2.1.14 110 10/29/2024
2.1.13 259 10/29/2024
2.1.12 146 10/29/2024
2.1.11 415 10/29/2024
2.1.10 257 10/28/2024
2.1.9 96 10/28/2024
2.1.8 125 10/28/2024
2.1.7 356 10/26/2024
2.1.6 115 10/26/2024
2.1.5 261 10/22/2024
2.1.4 117 10/22/2024
2.1.3 93 10/22/2024
2.1.2 102 10/22/2024
2.1.1 122 10/22/2024