Skip to content

Instantly share code, notes, and snippets.

@aleclarson
Created November 22, 2024 17:46
Show Gist options
  • Save aleclarson/b9f376bec432224a7d22b58eb0cd52d2 to your computer and use it in GitHub Desktop.
Save aleclarson/b9f376bec432224a7d22b58eb0cd52d2 to your computer and use it in GitHub Desktop.
import { withCapacity } from 'radashi'
export function keyedCapacity<TKey, TResult>(capacity: number) {
const queue = withCapacity(capacity)
const jobs = new Map<TKey, Promise<TResult>>()
return {
keys: (): IterableIterator<TKey> => jobs.keys(),
get: (key: TKey): Promise<TResult> | undefined => jobs.get(key),
run(key: TKey, job: () => Promise<TResult>): Promise<TResult> {
const promise = queue(job).finally(() => jobs.delete(key))
jobs.set(key, promise)
return promise
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment