1.1.0 • Published 2 years ago

@mtripg6666tdr/async-lock v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

async-lock

Promise based simple mutex for JS: preventing from running same code block at the same time.

API

  • LockObj (class)
    used to store mutex statuses.
  • lock (function)
    used to lock statement, just like C# lock{}.

Usage

const { lock, LockObj } = require("@mtripg6666tdr/async-lock");

const locker = new LockObj();
const someFunction = async () => {
  return await lock(locker, () => {
    // do some stuff.
  });
};

Example

Please see test file.

License

MIT