Created
November 22, 2024 17:46
-
-
Save aleclarson/b9f376bec432224a7d22b58eb0cd52d2 to your computer and use it in GitHub Desktop.
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
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