XuelesszzZ 94af2b8e7b 6-30-5 | hace 1 año | |
---|---|---|
.. | ||
test | hace 1 año | |
.npmignore | hace 1 año | |
History.md | hace 1 año | |
Makefile | hace 1 año | |
Readme.md | hace 1 año | |
component.json | hace 1 año | |
index.js | hace 1 año | |
package.json | hace 1 año |
Simple exponential backoff because the others seem to have weird abstractions.
$ npm install backo
min
initial timeout in milliseconds [100]max
max timeout [10000]jitter
[0]factor
[2]var Backoff = require('backo');
var backoff = new Backoff({ min: 100, max: 20000 });
setTimeout(function(){
something.reconnect();
}, backoff.duration());
// later when something works
backoff.reset()
MIT