0.1.2 • Published 5 years ago

tmutex v0.1.2

Weekly downloads
4
License
MIT
Repository
-
Last release
5 years ago

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).