1.0.3 • Published 8 years ago

pollUntil v1.0.3

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

poll-until

npm.io npm.io

A promised based time bomb poller.

pollUntil(fn, args = [], timeout = 3000, pollInterval = 200)

Usage

Start polling for the provided polling function fn using this promised based pollUntil.

As soon as the poller starts, a time bomb promise is also triggered. If the polling function is satisfied before the time bomb detonates, pollUntil results true to the promise chain. Otherwise, it returns false.

The library works with Typescript, ES6 and ES5.

Examples

import pollUntil from 'pollUntil';

let counter1 = 0;

const timer = setInterval(() => {
  counter ++
}, 100);

// Polling succeeded before the time bomb
pollUntil((c) => c > 10, counter, 3000, 200)
  .then((result) => {
    clearInterval(timer1);
    // result === true
    // ...
  });

// Time bomb detonated
pollUntil((c) => c > 10, counter, 100, 200)
  .then((result) => {
    clearInterval(timer);
    // result === false
    // ...
  });

For more examples, please have a look at project's tests.

License

The MIT License (MIT)