@calebboyd/semaphore
TypeScript icon, indicating that this package has built-in type declarations

1.3.1 • Public • Published

Semaphore

Naive resource management / concurrency primitive

npm i @calebboyd/semaphore

Example

import { Semaphore } from '@calebboyd/semaphore'
import { something } from './somewhere'

function doSomeWork () {
  const lock = new Semaphore(10)
  while(something.isTrue) {
    lock.acquire().then(x => () => {
      something.work().then(lock.release)
    })    
  }
}

The semaphore will only allow 10 locks to be aquired at a time. This limits the concurrency of the asyncronous function something.work to 10

API:

export class Semaphore {
  constructor (count: number) {}
  acquire(): Promise<void>
  release(): void
}

License

MIT

/@calebboyd/semaphore/

    Package Sidebar

    Install

    npm i @calebboyd/semaphore

    Weekly Downloads

    6,178

    Version

    1.3.1

    License

    MIT

    Unpacked Size

    9.26 kB

    Total Files

    15

    Last publish

    Collaborators

    • calebboyd