An open API service indexing awesome lists of open source software.

https://github.com/featurist/node-anticipate

retries asynchronous functions until they succeed
https://github.com/featurist/node-anticipate

Last synced: about 2 months ago
JSON representation

retries asynchronous functions until they succeed

Awesome Lists containing this project

README

        

# anticipate

Retries asynchronous functions until they succeed.

## Install

npm install anticipate

#### Example ([PogoScript](http://github.com/featurist/pogoscript))

anticipate = require 'anticipate'

anticipate.trying @(callback)
something unreliable (callback)
every 0.1 seconds for 3 tries @(result)
it worked (result)
else @(error)
oh noes (error)

#### Example (JavaScript)

anticipate = require('anticipate');

anticipate.tryingEverySecondsForTriesElse(function(callback) {
somethingUnreliable(callback);
}, 0.1, 3, function(result) {
itWorked(result);
}, function(error) {
ohNoes(error);
});

#### License
BSD