This package has been deprecated

Author message:

No longer maintained

@jdes/mutex

1.2.0 • Public • Published

Mutex

Asynchronous, synchronous and delayed Mutex with ES6 and Promises.

Table of contents

Setup

This module can then be installed with yarn:

yarn add @jdes/mutex

Usage

Import module:

/**
 * @class {Mutex}
 */
const Mutex = require('@jdes/mutex');

Instantiate:

/**
 * @type {Mutex}
 */
const mutex = new Mutex();

Example:

// Instantiate
const mutex = new Mutex();
let name = null;
let iterations = 0;

// Lock and perform and unlock asynchronously
mutex.asynchronous()
  .then((unlock) => {
    name = 'Jean Desravines';
    unlock();
  })
  .catch(() => {
    console.error('Mutex is locked');
  });

// Lock, perform and unlock asynchronously with delay.
// This section try to lock every 100ms but the delay accept to be locked every 200ms.
const interval = setInterval(() => {
  mutex.delayed(200)
    .then(() => iterations++)
    .then(() => {
      if (iterations === 5) {
        clearInterval(interval);
      } else {
        console.log(iterations);
      }
    });
}, 100);

API

Properties

locked: boolean

Indicate if the mutex is locked

Example:

console.log(mutex.locked ? 'Locked' : 'Unlocked');

Methods

lock(): boolean

  • returns true if the mutex success to lock

Try to lock synchronously the mutex and return true if it success

Example:

if (mutex.lock()) {
  console.log('Success');
} else {
  console.error('Error');
}

unlock(): Promise

  • returns a resolved Promise

Unlock the mutex

Example:

mutex.unlock()
  .then(() => {
    console.log('Unlocked');
  });

asynchronous(): Promise

  • return a Promise resolved with the unlock callback if the mutex success to lock.

Try to lock the mutex and resolve the promise

Example:

mutex.asynchronous()
  .then((unlock) => {
    // Unlock after 1s
    setTimeout(unlock, 1000);
  });

delayed(delay: number): Promise

  • delay the delay in ms
  • return a Promise resolved with tLOCKEDhe unlock callback if the mutex success to lock.

Try to lock the mutex and resolve the promise. The mutex can be unlocked only in a interval of delay ms.

The interval is computed when the method is called so you can unlock the mutex before the end of the interval with mutex.unlock() or invoke an othe mutex.delay(delay: number) with a lesser delay.

You should have a mutex for every feature and not reuse a mutex for others. It is useful to keep performance on polling functions.

Example:

let iterations = 0;
const interval = setInterval(() => {
  mutex.delayed(200)
    .then(() => {
      if (iterations++ === 5) {
        clearInterval(interval);
      } else {
        console.log(iterations);
      }
    });
}, 100);

Package Sidebar

Install

npm i @jdes/mutex

Weekly Downloads

8

Version

1.2.0

License

MIT

Unpacked Size

9.28 kB

Total Files

7

Last publish

Collaborators

  • jdes