我正在尝试使用promise-circuitbreaker节点模块。 我能够将一个参数传递给被调用的函数,但是,我无法让被调用的函数返回一个值。 此外,我不断得到超时,我不明白。我显然遗漏了一些东西,但是我在文档中找不到任何解决方案(http://pablolb.github.io/promise-circuitbreaker/)
我制作了一个非常简单的示例应用来展示我的困难:
var CircuitBreaker = require('promise-circuitbreaker');
var TimeoutError = CircuitBreaker.TimeoutError;
var OpenCircuitError = CircuitBreaker.OpenCircuitError;
function testFcn(input, err) {
console.log('Received param: ', input);
//err('This is an error callback');
return 'Value to return';
}
var cb = new CircuitBreaker(testFcn);
var circuitBreakerPromise = cb.exec('This param is passed to the function');
circuitBreakerPromise.then(function (response) {
console.log('Never reach here:', response);
})
.catch(TimeoutError, function (error) {
console.log('Handle timeout here: ', error);
})
.catch(OpenCircuitError, function (error) {
console.log('Handle open circuit error here');
})
.catch(function (error) {
console.log('Handle any error here:', error);
})
.finally(function () {
console.log('Finally always called');
cb.stopEvents();
});
我得到的输出是:
Received param: This param is passed to the function
Handle timeout here: { [TimeoutError: Timed out after 3000 ms] name: 'TimeoutError', message: 'Timed out after 3000 ms' }
Finally always called
就我而言,我希望返回一个简单的字符串。我不想要超时错误。
如果我在testFcn()中取消注释// err('这是一个错误回调')行,我得到以下输出:
Received param: This param is passed to the function
Handle any error here: This is an error callback
Finally always called
所以看来被调用函数中的第二个参数是用于错误处理。
非常感谢任何帮助。