文件名称:bakeoff:朴素指数退避函数
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-12 21:45:41
JavaScript
烤过 简单的指数烘焙函数。 允许包装现有功能并在未成功或达到最大退休计数时尝试。 支持回调和承诺(ES6)。 安装 $ npm install bakeoff 例子 var bakeoff = require('bakeoff'); bakeoff.options.max = 5; // number of max retries var params = { Bucket: 'mybucket', Key: 'myfile', Body: 'hello world!' }; bakeoff(s3.putObject, params).then(function(res) { console.log(res); }); 执照 麻省理工学院
【文件预览】:
bakeoff-master
----.gitignore(12B)
----README.md(719B)
----test()
--------helper.js(211B)
--------index.js(1KB)
----LICENSE(1KB)
----package.json(527B)
----.travis.yml(55B)
----lib()
--------index.js(2KB)