1.2.0 • Published 9 years ago

pend v1.2.0

Weekly downloads
11,012,494
License
MIT
Repository
github
Last release
9 years ago

Pend

Dead-simple optimistic async helper.

Usage

var Pend = require('pend');
var pend = new Pend();
pend.max = 10; // defaults to Infinity
setTimeout(pend.hold(), 1000); // pend.wait will have to wait for this hold to finish
pend.go(function(cb) {
  console.log("this function is immediately executed");
  setTimeout(function() {
    console.log("calling cb 1");
    cb();
  }, 500);
});
pend.go(function(cb) {
  console.log("this function is also immediately executed");
  setTimeout(function() {
    console.log("calling cb 2");
    cb();
  }, 1000);
});
pend.wait(function(err) {
  console.log("this is excuted when the first 2 have returned.");
  console.log("err is a possible error in the standard callback style.");
});

Output:

this function is immediately executed
this function is also immediately executed
calling cb 1
calling cb 2
this is excuted when the first 2 have returned.
err is a possible error in the standard callback style.
yauzlfd-slicer@brawlers-tavern/tmx-parser@brawlers-tavern-os/tmx-parserkubii-apidyx-reacttemp-mail-fucktalent-to-vite-clione-indexunblock-block-save-variables@infinitebrahmanuniverse/nolb-penopea-bootstraap@everything-registry/sub-chunk-2425s3-moregracefuleditorjs_forkededitor.js-custom-multiple-selectedelectron-epos-printeryawlyangzai-cli@edoroshenko/codemirrorvue-dev-clonewdio-cucumberweb-component-tester-bundlewcq-vuewhatsconcwebprerender-pluginwebpuppeteerweb-elements-iconsvulkan-apiwabotakbarwow.js-juzitmx-parsertmx-parser-typescripttest-tmx-parsertinymce-plugin-toytldrawlignintesting-storybooktest-public-protext-to-img-craiyon-scrappertrue-pricetype-libaryzuobaiquan-prerender-pluginzuobaiquan-puppeteer@eversource/tmx-parser@faizanhaider/iconsax@faceleg/s3@frachuk/s3video-multi-uploaderfenglin-uploaderfd-slicer2@itayn-fireberry-org/itayn-testfireglass-s3fireglass-s3-api@hieuquang2212/formsweetalert2-denazificationes-drei-mime-updated@img-arena/img-ui-mui-theme@headgum/tko-mapping@img-arena/ui-core@digitalrakesh/jsuiopenatc-components@dimcheify/dimuioptimus-image-storeopea-bootstrap@ddoice/s3design-system-fitbank-450dfeuk-frontenddfeuk-frontend-manualredis-dist-job-queuerefinejs-reposelect2-selectalls3-upload-resumes3-eu-central-1s3s3-compatible-boss3-nodes3-node-clients3-clients3-client-controls3-more-gracefuls3abstractionsciadvfilesrodentshainaspotify-ds-sesqueezer-provider-nodesqueezer-awssteamhourapi@cdevine49/react-numeric-input@di-fe/s3ss-actionsstock-ticker-react-widgetsvavatar@olliv/fd-slicer@igniswap/igni-swap-lib@lanz1/v-money3@luciadias/storybook-notimation@monolambda/s3winx-form-winx@elucidatainc/s3-node-client
1.2.0

9 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

11 years ago

1.1.0

11 years ago

1.0.0

11 years ago