-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2fd60dc
commit 6842e89
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>RateLimiter</id> | ||
<version>1.0.0</version> | ||
<title>RateLimiter</title> | ||
<authors>David Desmaisons</authors> | ||
<projectUrl>https://github.com/David-Desmaisons/RateLimiter</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Utility to respect Web Services rate limit in client application. | ||
Features: | ||
* Easy to use | ||
* Fully asynchroneous: lower resource usage than thread sleep | ||
* Cancellable via CancellationToken | ||
* Thread safe so you can share time contraints object to rate limit diferent threads using the same resource | ||
* Composable: ability to compose diferent rate limits in one constraint</description> | ||
<summary>C# client rate limiter</summary> | ||
<tags>Asynchroneous, Task, rate limitation</tags> | ||
</metadata> | ||
</package> |