本文整理汇总了TypeScript中async.constant.apply方法的典型用法代码示例。如果您正苦于以下问题:TypeScript constant.apply方法的具体用法?TypeScript constant.apply怎么用?TypeScript constant.apply使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类async.constant
的用法示例。
在下文中一共展示了constant.apply方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: waterfall
return new Promise<any>((resolve: Function, reject: Function) => {
// start the pre and then run the rest of the wrapped
waterfall([constant.apply(undefined, args)].concat(f.stack.pre), (err: Error, ...args: Array<any>) => {
// if error is made
if (err) {
return reject(err);
}
// apply the new arguments and get actor results
applyEach(f.stack.actor, args, (err: Error, result: Array<any>) => {
// if error is made
if (err) {
return reject(err);
}
// push result into args
args.push(result);
// start the post hooks and return values
waterfall([constant.apply(undefined, args)].concat(f.stack.post), (err: Error, ...results: Array<any>) => {
// if error is made
if (err) {
return reject(err);
}
// return the actual result as the last elemnt of the array
resolve(results[results.length - 1]);
});
});
});
});
示例2: applyEach
applyEach(f.stack.actor, args, (err: Error, result: Array<any>) => {
// if error is made
if (err) {
return reject(err);
}
// push result into args
args.push(result);
// start the post hooks and return values
waterfall([constant.apply(undefined, args)].concat(f.stack.post), (err: Error, ...results: Array<any>) => {
// if error is made
if (err) {
return reject(err);
}
// return the actual result as the last elemnt of the array
resolve(results[results.length - 1]);
});
});