0.1.1 • Published 8 years ago

promise-mutex v0.1.1

Weekly downloads
395
License
MIT
Repository
github
Last release
8 years ago

promise-mutex

npm version Build Status

The promise-mutex package provides a mutual-exclusion lock to allow only one promise chain to run at a time.

Installation

npm install promise-mutex

Usage

var Mutex = require('promise-mutex');

var print = x => new Promise(resolve => {
    console.log(x);
    resolve(x);
});

var doublePrint = x => print(x).then(x => print(x));

var mutex = new Mutex();

Promise.all([
    // 1 2 1 2
    doublePrint(1),
    doublePrint(2)
]).then(() => {
    // 1 1 2 2
    mutex.lock(() => doublePrint(1));
    mutex.lock(() => doublePrint(2));
});

License

The MIT License (MIT)

See LICENSE for details.