async-polling icon indicating copy to clipboard operation
async-polling copied to clipboard

An easy way to run reliable polling without messing with setTimeout.

Results 4 async-polling issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/4473536/51755578-c941d580-209d-11e9-994d-0b9c7336bf51.png) Usage of `util.inherits()` is discouraged. Please use the ES6 class and extends keywords to get language level inheritance support. Also note that the two styles are semantically incompatible. [Link](https://nodejs.org/docs/latest/api/util.html#util_util_inherits_constructor_superconstructor)...

It would be nice to be able to provide arguments to the polling function. For instance, we could write a polling to retrieve the private messages of a user on...

feature
bcbreak

We sometimes need to stop the polling from within `pollingFunc`. Currently, there are two ways of solving this. - If the polling instance is available inside the polling function, we...

feature