delayed-lock

0.0.1 • Public • Published

Delayed Lock Build Status

Provides a Lock object that can be acquired only after a pre-configured delay after it is released. The Lock object is created as follows:

var Lock = require('delayed_lock');
var lock = Lock.create();

The following APIs are available on the lock created above:

  1. acquire(callback) - Acquire the lock. The key is passed to the callback of this API.
  2. release(key) - Release the lock. The key got during the acquire call should be passed as the argument to this call. If the key does not match the key of the lock then this call will be a noop.

The lock can be in one of the following states:

  1. AVAILABLE A lock can be successfully acquired, only when it is in the AVAILABLE state.
  2. ACQUIRED Once a lock is acquired, the lock is placed in the ACQUIRED state.
  3. DELAYING When a lock is released, it is immediately put in the DELAYING state for DELAY milliseconds (configurable). After the delay it is put to AVAILABLE state.

Delaying before unlocking

By default delay after a lock is released and before it is made available is set 1s. This can be cofigured either at a global level by setting the DELAYED_LOCK_DELAY environment variable or on a per-lock basis by passing a config parameter to the create call while creating the lock.

var 5_sec_delayed_lock = Lock.create({delay: 5000})

Configuring Locks

Delayed Locks can be configured either at a global level (affects all locks) or on a per-lock basis.

Global configurations

Locks can be configured by setting the following environment variables before requiring the delayed_lock module for the first time.

  1. DELAYED_LOCK_DELAY - The amount of time that the lock should be held after it is released, before making it available again. Note that this is the minimum time and not an exact time. However, it can be expected that the delay time is reasonably close to this value.
  2. DELAYED_LOCK_TIMEOUT - If set, the lock is made available after this period of time after it is acquired or when explicitly releases by the acquirer, whichever is earlier.
  3. DELAYED_LOCK_MIN_WAIT_TIME_BETWEEN_RETRIES' - If anacquire` call is made when the lock is not in AVAILABLE state, locking is automatically retried after 500ms. This time can be changed by setting this variable.

Per-lock configuration

A lock can be configured by passing a (optional) configuration object to the create call. The following configuration parameters are available:

  1. delay - same effect as DELAYED_LOCK_DELAY
  2. timeout - same effect as DELAYED_LOCK_TIMEOUT
  3. waitTime - same effect as DELAYED_LOCK_MIN_WAIT_TIME_BETWEEN_RETRIES

Testing

$> make test

Release notes:

0.0.1 - Initial Release

Contributions

Pull requests are very welcome :)

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.1
    1

Package Sidebar

Install

npm i delayed-lock

Weekly Downloads

1

Version

0.0.1

License

ISC

Last publish

Collaborators

  • raghums