2.2.2 • Published 2 years ago

await-lock v2.2.2

Weekly downloads
18,841
License
MIT
Repository
github
Last release
2 years ago

AwaitLock tests codecov

Mutex locks for async functions

npm package

Usage

import AwaitLock from 'await-lock';

let lock = new AwaitLock();

async function runSerialTaskAsync() {
  await lock.acquireAsync();
  try {
    // IMPORTANT: Do not return a promise from here because the finally clause
    // may run before the promise settles, and the catch clause will not run if
    // the promise is rejected
  } finally {
    lock.release();
  }
}

You can also use AwaitLock with co and generator functions.

import AwaitLock from 'await-lock';

let runSerialTaskAsync = co.wrap(function*() {
  yield lock.acquireAsync();
  try {
    // Run async code in the critical section
  } finally {
    lock.release();
  }
});
blink-camerasmenlolab-runner@infinitebrahmanuniverse/nolb-awajam3-react-sdkhtml-pdf-js@everything-registry/sub-chunk-1191express-router-dynamicfast-fuzzfedererfsm-coreengioscopeeth-sdk-walletexnomy-sdk-walletexnomy-sdk-walletnewexnomy-sdknew-wallet-exnomy-walletexnomy-wallet-newexnomy-wallet-testhypercloudinstamancerinjestdbinjestdb-levelirslackdingestdbingestdb-levelhyperinstallgrid3_client@evo/vchasno-signerhelios-utils@extplug/room-settingsgiga-notificatorhappy-css-moduleskitcheningredientskinda-cordova-sqlitekinda-web-sql@aptpod/iscp-tsparadis-redbean-nodepassbolt-browser-extensionnpm-all-packagesnativescript-task-dispatchernbcasbinmatrix-react-sdkmatrix-react-sdk-dxmbmcubed-persistencelevel-object-bufferlscontestsmonstrum-casbinquickshotproject-health-toolrandom-access-indexed-file@atek-cloud/atek@astro-utils/forms@armal/nodecore-nano@apilads/auto-cert-man-backtest1dwebcataicentrictalktsy-matrix-react-sdkcasbincasbin-coreconsole-read-write@bycedric/snack-runtimesemaphore-merkle-treeanysql-cordova-sqliteanysql-websqlasync-atomic-storescratch-db-testscratch-gestawait-cachesnack-runtimesqlite3-helper-rebuildsqlite3-helpersqlite3-settings-store-helperblind-findstark-dbbitweb-cliredbean-noderedbean-sqlreactive-postgresreadme-metric-reporterctzntwype-sdk@cerpus/edlib-node-utils@daimo/apidexhigh-wallet-testdbrowser-core@chcaa/twitter-academic-search@chcaa/web-extractordatoms-clidhealth-explorerdhealth-walletdex-sdk-wallet@dbrowser/framework@dhub/cli@dhealthdapps/frontend@db-lab/casbin@deboxsoft/casbin@lequan/vchasno-signer@hyperspace/cli@lumieducation/h5p-webcomponents
2.2.1

2 years ago

2.2.0

2 years ago

2.2.2

2 years ago

2.1.0

4 years ago

2.0.1

4 years ago

2.0.0

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.3

6 years ago

1.1.2

7 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.0.1

9 years ago

0.0.0

9 years ago