tmutex
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

tmutex

Mutex locks for javascript.

Usage

const {Lock} = require('tmutex');
const lock = Lock.create();

async function doSomething() {
  const unlock = await lock();
  try {
    await _doSomething();
  } finally {
    unlock();
  }
}

async function _doSomething() {
  // actually do something async
}

Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work.

Creds

  • Christopher Jeffrey

License

  • Copyright (c) 2019, Yuan Tao (MIT License).

Readme

Keywords

Package Sidebar

Install

npm i tmutex

Weekly Downloads

5

Version

0.1.2

License

MIT

Unpacked Size

42 kB

Total Files

36

Last publish

Collaborators

  • towyuan