bharel / asynciolimiter

A simple yet efficient Python AsyncIO rate limiter.
MIT License
13 stars 2 forks source link

Support max queue on limiter #5

Open bharel opened 2 years ago

bharel commented 2 years ago

Will it raise asyncio.queue.full? What about cancelled items in the queue? Do they count as still being in the queue? Removing cancelled items is an O(n) operation.